forked from eurucamp/eurucamp-activities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (51 loc) · 1.4 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
source 'https://rubygems.org'
ruby "2.1.1"
gem 'rails', '4.0.2'
gem 'pg'
gem 'unicorn'
gem 'settingslogic'
gem 'newrelic_rpm'
gem 'devise', '~> 3.0.0.rc'
gem 'omniauth', '~> 1.1.4'
gem 'omniauth-github', '~> 1.1.0'
gem 'omniauth-twitter', '~> 0.0.16'
gem 'simple_form', '~> 3.0.1'
gem 'modernizr-rails'
gem 'sprockets-rails', git: 'git://github.com/rails/sprockets-rails.git'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.0.1'
gem 'bourbon'
gem 'neat'
gem 'haml-rails'
gem 'rails_html_helpers'
gem 'draper'
gem 'cancan'
gem 'redcarpet'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
group :development do
gem 'debugger', '~> 1.6.6'
gem 'heroku_san', '~> 3.0.2'
gem 'foreman'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test, :development do
gem "rspec-rails", '~> 2.0'
gem 'factory_girl_rails','~> 4.2'
end
group :test do
gem 'simplecov', require: false
gem 'capybara', '~> 2.1'
gem 'capybara-webkit', '~> 0.14'
gem 'accept_values_for'
gem 'json_spec'
end
group :production, :staging do
gem 'exception_notification', '~> 4.0.1'
gem 'rack-robotz', '~> 0.0.3'
gem 'rails_log_stdout', github: 'heroku/rails_log_stdout'
gem 'rails3_serve_static_assets', github: 'heroku/rails3_serve_static_assets'
end