-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
90 lines (81 loc) · 2.22 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
source 'https://rubygems.org'
source 'http://gems.rubyforge.org/'
source 'http://gems.github.com'
gem 'rails', '~> 3.2.13'
gem 'pg'
gem 'jquery-rails'
gem 'haml-rails'
gem 'simple_form'
gem 'analytical'
gem 'split'
gem 'decent_exposure', :git => 'git://github.com/voxdolo/decent_exposure.git', :branch => 'master'
gem 'draper'
gem 'bourbon'
gem 'state_machine'
gem 'responders'
gem 'omniauth-identity'
gem 'bcrypt-ruby'
gem 'unicorn'
gem 'make_voteable'
gem 'rollout'
gem 'rollout_ui', :git => 'git://github.com/jrallison/rollout_ui.git', :branch => 'master'
gem 'uuidtools'
gem 'carrierwave'
gem 'fog'
gem 'stripe'
gem 'faker'
gem 'mini_magick', '>= 3.5.0'
gem 'display_case'
gem 'awesome_nested_set'
gem 'geocoder'
gem 'elecnix-ruby-geonames'
gem 'newrelic_rpm'
gem 'dalli'
gem 'foreman'
gem 'virtus'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platform => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'cucumber-rails', :require => false
gem 'capybara-webkit', :git => 'git://github.com/thoughtbot/capybara-webkit.git', :branch => 'master'
gem 'fabrication'
gem 'launchy'
gem 'rspec'
gem 'rspec-rails'
gem 'tddium'
gem 'reek'
gem 'ruby_parser', '>= 3.1.3'
gem 'flog'
gem 'rails_best_practices', :require => false
gem 'simplecov', :require => false
gem 'faker'
end
group :development do
gem 'pickler'
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
gem 'better_errors'
gem "binding_of_caller"
end
group :test do
gem 'database_cleaner'
gem 'capybara', :git => 'git://github.com/jnicklas/capybara.git'
gem 'shoulda-matchers'
gem 'activerecord-nulldb-adapter', :git => 'git://github.com/mattvanhorn/nulldb.git'
gem 'vcr'
gem 'webmock', '>= 1.8.0', '< 1.10'
gem 'email_spec'
gem 'site_prism', :git => 'git://github.com/mattvanhorn/site_prism.git'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'