-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathGemfile
52 lines (46 loc) · 1.04 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
source "https://rubygems.org"
ruby "2.2.3"
gem "rails", "4.2.4"
gem "jquery-rails"
gem "unicorn"
gem "haml-rails"
gem "foreigner"
gem "subelsky_power_tools"
gem "dim"
gem "simple_form"
gem "bootstrap-sass"
gem "table_for_collection"
gem "domino"
gem "exception_notification"
gem "rails_admin"
gem "dotenv-rails"
gem "pg"
gem "sqlite3", require: true
group :assets do
gem "sass-rails"
gem "coffee-rails"
gem "uglifier"
end
group :development do
gem "foreman"
gem "annotate"
end
group :development, :test do
gem "rspec-rails"
gem "database_cleaner"
gem "capybara"
gem "shoulda-matchers"
gem "launchy"
end
group :test do
gem "factory_girl_rails"
gem "rspec-instafail"
gem "codeclimate-test-reporter", require: nil
end
group :production do
# Right now we use Postgres on Heroku, but we switched the dev/test environment
# to sqlite to make things easier for contributors. Eventually we can migrate
# production over, as this is not a high-performance app by any means. sqlite
# is more than adequate.
gem "rails_12factor"
end