Farmbot-Web-App/Gemfile

46 lines
1.2 KiB
Ruby
Raw Normal View History

2016-11-09 16:23:55 -07:00
source "https://rubygems.org"
2017-05-12 13:16:24 -06:00
ruby "2.4.1"
2017-05-12 13:16:24 -06:00
gem "rails", "~> 5.1"
2016-11-29 08:10:11 -07:00
gem "thin"
2016-11-09 16:23:55 -07:00
gem "rails_12factor"
2017-05-12 13:16:24 -06:00
# START RAILS 5.1 "SPECIAL" VERSIONS ===================================.,_
# TODO: Get off of this version once Devise folks ship a 5.1 release.
# - RC 12 May 17
gem "devise", git: "https://github.com/plataformatec/devise"
gem 'delayed_job', github: 'gogovan/delayed_job', branch: 'rails-5.1'
gem 'delayed_job_active_record',
github: 'gogovan/delayed_job_active_record',
branch: 'rails-5.1'
# END TEMPORARY RAILS 5.1 GEMS =========================================-"`
2016-11-09 16:23:55 -07:00
gem "jwt"
2017-05-12 13:16:24 -06:00
gem "mutations"
gem "active_model_serializers"
2016-12-04 15:08:36 -07:00
gem "rack-cors"
2016-12-15 14:21:46 -07:00
gem "rack-attack"
2017-05-12 13:16:24 -06:00
gem "paperclip"
gem "figaro"
gem "fog-google", git: "https://github.com/fog/fog-google"
2017-01-16 15:29:04 -07:00
gem "pg"
gem "montrose"
gem "polymorphic_constraints"
2017-01-19 11:48:29 -07:00
# Error reporting tools.
2017-01-19 11:52:16 -07:00
# Active on the "official" FarmBot server, set the appropriate ENV
# vars if you wish to use them on your own servers.
2017-01-19 11:48:29 -07:00
gem "rollbar"
gem "skylight"
group :development, :test do
2017-05-16 07:53:17 -06:00
gem "database_cleaner"
2016-11-09 16:23:55 -07:00
gem "pry"
gem "factory_girl_rails"
gem "faker"
2016-12-06 08:42:02 -07:00
gem "smarf_doc", git: "https://github.com/RickCarlino/smarf_doc.git"
2016-11-09 16:23:55 -07:00
gem "rails-erd"
2016-12-04 15:26:05 -07:00
gem "rspec"
gem "rspec-rails"
2016-11-09 16:23:55 -07:00
gem "simplecov"
2017-02-13 13:21:37 -07:00
gem "letter_opener"
end