forked from loomio/loomio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
100 lines (93 loc) · 2.96 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
91
92
93
94
95
96
97
98
99
100
source 'http://rubygems.org'
gem 'rails', '~> 3.2.13'
gem 'haml-rails', '~> 0.4'
gem 'devise', '~> 2.2.3'
gem 'pg', '~> 0.14.1'
gem 'capistrano'
gem 'jquery-rails', '~> 1.0.19'
gem 'inherited_resources', '~> 1.3.0'
# DO NOT REMOVE - formtastic is currently used for active admin
gem 'formtastic' # Deprecated - use simple_form instead.
gem 'simple_form', '~> 2.0.4'
gem 'country_select', '~> 1.1.3'
gem 'client_side_validations', '~> 3.2.1'
gem 'client_side_validations-simple_form', '~> 2.0.1'
gem 'jqplot-rails', '~> 0.3'
gem 'rails-backbone', '~> 0.7.2'
gem 'aasm', '~> 3.0.3'
gem 'cancan', '~> 1.6.7'
gem 'acts_as_commentable_with_threading', '~> 1.1.2'
gem 'draper', '~> 0.11.1' # can this be removed?
gem 'exception_notification', '~> 2.6.1'
gem 'browser', '~> 0.1.3' # what is this?
gem 'rmagick', '~> 2.13.1'
gem 'gravtastic', '~> 3.2.6'
gem 'paperclip', '~> 3.4.0'
gem 'kaminari', '~> 0.13.0'
gem 'activeadmin', '~> 0.5.0'
gem 'nokogiri', '~> 1.5.9'
gem 'redcarpet', '~> 2.2.2'
gem 'rabl', '~> 0.7.3'
gem 'twitter-text', '~> 1.5.0'
gem 'jquery-atwho-rails', '~> 0.1.6'
gem 'paper_trail', '~> 2.6.3'
gem 'unicorn', '~> 4.6.2'
gem 'rack-canonical-host', '~> 0.0.8'
gem 'delayed_job_active_record', '~> 0.3.3'
gem 'hirefireapp', '~> 0.0.8'
gem 'foreman', '~> 0.60.2'
gem 'rinku', '~> 1.7.2'
gem 'piwik_analytics', '~> 1.0.1'
gem 'friendly_id', '~> 4.0.9'
# NOTE: sass-rails should be inside :assets group, but currently there is an issue with activeadmin
# which does not allow us to do this
#
# https://github.com/rails/sass-rails/issues/38#issuecomment-2046678
gem 'sass-rails', '~> 3.2.6'
gem 'coffee-rails', '~> 3.2.2'
gem 'fog'
gem 'rack-mini-profiler', '~> 0.1.23'
gem 'roadie', '~> 2.3.4'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'asset_sync', '~> 0.5.4'
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'uglifier', '~> 1.1.0'
gem 'modernizr-rails', '~> 2.6.2'
end
group :development, :test do
gem 'thin', '~> 1.5.0'
gem 'pry-rails', '~> 0.3.0' # Use this instead of debugger
gem 'factory_girl_rails', '~> 4.0'
gem 'faker', '~> 1.0.1'
gem 'rspec-rails', '~> 2.12.2'
gem 'shoulda-matchers', '~> 1.2.0'
gem 'capybara', '~> 2.1.0'
gem 'database_cleaner', '~> 0.9.1'
gem 'selenium-webdriver', '~> 2.25.0'
end
group :development do
gem 'meta_request', '~> 0.2.4'
gem 'better_errors', '~> 0.6.0'
gem 'guard', '~> 1.6.1'
gem 'guard-spork', '~> 1.4.1'
gem 'guard-rspec', '~> 2.3.3'
gem 'rb-inotify', '~> 0.8.8', :require => false
gem 'rb-fsevent', '~> 0.9.1', :require => false
gem 'rb-fchange', '~> 0.0.5', :require => false
gem 'launchy', '~> 2.0.5'
gem 'spork-rails', '~> 3.2.1'
gem 'awesome_print', '~> 1.0.2'
end
group :test do
gem 'cucumber-rails', '~> 1.3.0', :require => false
gem 'email_spec', '~> 1.2.1'
gem 'poltergeist', '~> 1.3.0'
gem 'webmock', '~> 1.9.0'
gem 'vcr', '~> 2.4.0'
end
group :staging, :production do
gem 'newrelic_rpm', '~> 3.5.7.59'
gem 'heroku-deflater'
end