forked from loomio/loomio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
100 lines (93 loc) · 2.49 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.12'
gem "haml-rails"
gem 'devise', '~> 2.2.3'
gem 'devise_invitable', '~> 1.0.0'
gem 'pg'
gem 'capistrano'
gem 'jquery-rails'
gem "jquery-scrollto-rails"
gem 'inherited_resources'
gem 'formtastic' # Deprecated - use simple_form instead.
gem 'simple_form', '~> 2.0.0'
gem 'client_side_validations'
gem 'client_side_validations-simple_form', '~> 2.0.0'
gem 'jqplot-rails'
gem "rails-backbone"
gem 'coffee-filter'
gem 'aasm'
gem 'cancan'
gem 'acts_as_commentable_with_threading'
gem 'draper', '~> 0.11.1'
gem 'exception_notification'
gem 'browser'
gem 'rmagick'
gem 'gravtastic'
gem 'paperclip'
gem 'kaminari'
gem 'activeadmin'
gem 'nokogiri'
gem 'redcarpet', :git => 'https://github.com/vmg/redcarpet.git'
gem 'rabl'
gem 'twitter-text', :git => 'https://github.com/twitter/twitter-text-rb.git'
gem 'jquery-atwho-rails'
gem 'paper_trail', '~> 2'
gem "high_voltage"
gem 'thin'
gem 'rack-canonical-host'
gem 'delayed_job_active_record'
gem 'hirefireapp'
gem 'foreman'
gem 'aws-sdk'
# 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.5'
gem 'coffee-rails', '~> 3.2.2'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'bootstrap-sass', '~>2.0.3'
gem 'uglifier', '>= 1.0.3'
gem 'modernizr-rails'
end
group :development, :test do
gem 'thin'
gem 'debugger'
gem "factory_girl_rails", "~> 4.0"
gem 'faker'
gem 'rspec-rails'
gem 'ruby-prof', :git => 'https://github.com/wycats/ruby-prof.git'
gem 'shoulda-matchers'
gem 'capybara'
gem 'database_cleaner'
gem 'selenium-webdriver', '2.25.0'
gem 'letter_opener'
gem 'mailcatcher'
end
group :development do
gem 'meta_request', '0.2.1'
gem 'guard'
gem 'guard-spork'
gem 'guard-rspec'
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
gem 'rb-fchange', :require => false
gem 'launchy'
gem 'spork-rails'
gem 'awesome_print'
end
group :test do
gem 'cucumber-rails', :require => false
gem 'cane', :git => 'git://github.com/square/cane.git'
gem 'simplecov', :require => false
gem 'flay', :require => false
gem "rails_best_practices", :require => false
gem 'email_spec'
gem 'poltergeist', :git => 'https://github.com/jonleighton/poltergeist.git'
end
group :staging, :production do
gem 'newrelic_rpm'
gem 'aws-sdk'
end