-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
75 lines (54 loc) · 1.44 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
source 'https://rubygems.org'
gem 'rails', "~> 3.2.14"
gem 'rails-i18n', '~> 3.0.0'
gem 'pg'
gem 'mysql2'
gem 'thin'
# Authentication
gem 'devise'
gem 'devise-i18n'
gem 'devise-i18n-views'
gem "simple_form"
gem 'json_builder'
gem 'geocoder'
gem 'gravtastic'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'forgery'
gem 'icalendar'
gem 'factory_girl_rails'
gem 'entypo-rails'
group :development do
gem "better_errors"
gem 'binding_of_caller'
gem 'pry-rails'
end
group :development, :test do
gem 'pry'
gem 'rspec-rails'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# gem 'bootstrap-sass'
gem 'execjs'
# # See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
end
gem 'uglifier'
gem 'sass-rails'
gem 'anjlab-bootstrap-rails', '>= 3.0.0.0', :require => 'bootstrap-rails' # Only version with bootstrap3 for the moment
# Needed in gemfile for usj adaptator
gem 'jquery-rails'
# We need this outstide of the asset group
# see http://stackoverflow.com/questions/7464900/what-needs-to-be-configured-for-heroku-to-handle-templates-based-on-coffeescript
gem 'coffee-rails'
gem 'haml'
gem 'http_accept_language'
group :test do
gem "sqlite3"
gem 'poltergeist'
gem 'cucumber-rails', :require => false
gem 'database_cleaner', "~> 1.0.1" # see https://github.com/gregbell/active_admin/issues/2388
gem 'email_spec'
end