forked from FarmBot/Farmbot-Web-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·44 lines (42 loc) · 1.13 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
source "https://rubygems.org"
ruby "2.4.1"
gem "rails", "~> 5.1.3"
gem "thin"
gem "rails_12factor"
gem "devise"
gem "delayed_job"
gem "delayed_job_active_record"
gem "jwt"
gem "mutations"
gem "active_model_serializers"
gem "rack-cors"
gem "rack-attack"
gem "paperclip"
gem "figaro"
gem "fog-google", git: "https://github.com/fog/fog-google"
gem "pg"
gem "polymorphic_constraints"
gem "tzinfo" # For validation of user selected timezone names
gem "foreman"
gem "webpack-rails"
# Error reporting tools.
# Active on the "official" FarmBot server, set the appropriate ENV
# vars if you wish to use them on your own servers.
gem "rollbar"
gem "skylight"
group :development, :test do
gem "codecov", require: false
gem "database_cleaner"
gem "pry"
gem "factory_girl_rails"
gem "faker"
gem "smarf_doc", git: "https://github.com/RickCarlino/smarf_doc.git"
gem "rails-erd"
# TODO: Upgrade versions when they fix this stuff:
# https://stackoverflow.com/questions/43983466
# /controller-test-emits-debug-failure-messages-after-rails-5-1-upgrade
gem "rspec", "~> 3.5.0"
gem "rspec-rails", "~> 3.5.0"
gem "simplecov"
gem "letter_opener"
end