ad2ba33db6
This fixes the following error seen on metamaps.cc: > *A* `Gem::LoadError` *occurred while* `POST </mappings>` *was processed > by* `mappings#create`: Specified 'redis' for Action Cable pubsub > adapter, but the gem is not loaded. Add `gem 'redis'` to your Gemfile > (and ensure its version is at the minimum required by Action Cable). Backtrace ---------------- ```/usr/local/rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/monitor.rb:214:in `mon_synchronize' /home/metamaps/metamaps.cc/app/models/mapping.rb:32:in `after_created' /home/metamaps/metamaps.cc/app/controllers/mappings_controller.rb:24:in `create'```
56 lines
990 B
Ruby
56 lines
990 B
Ruby
# frozen_string_literal: true
|
|
source 'https://rubygems.org'
|
|
ruby '2.3.0'
|
|
|
|
gem 'rails', '~> 5.0.0'
|
|
|
|
gem 'active_model_serializers'
|
|
gem 'aws-sdk', '~> 2.7.0'
|
|
gem 'best_in_place'
|
|
gem 'delayed_job'
|
|
gem 'delayed_job_active_record'
|
|
gem 'devise'
|
|
gem 'doorkeeper'
|
|
gem 'dotenv-rails'
|
|
gem 'exception_notification'
|
|
gem 'httparty'
|
|
gem 'json'
|
|
gem 'kaminari'
|
|
gem 'mailboxer'
|
|
gem 'paperclip'
|
|
gem 'pg'
|
|
gem 'puma'
|
|
gem 'pundit'
|
|
gem 'pundit_extra'
|
|
gem 'rack-attack'
|
|
gem 'rack-cors'
|
|
gem 'redis', '~> 3.3.3'
|
|
gem 'slack-notifier'
|
|
gem 'snorlax'
|
|
gem 'sucker_punch'
|
|
|
|
# asset stuff
|
|
gem 'jquery-rails'
|
|
gem 'jquery-ui-rails'
|
|
gem 'sass-rails'
|
|
gem 'uglifier'
|
|
|
|
group :test do
|
|
gem 'brakeman', require: false
|
|
gem 'factory_girl_rails'
|
|
gem 'json-schema'
|
|
gem 'rspec-rails'
|
|
gem 'shoulda-matchers'
|
|
gem 'simplecov', require: false
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'better_errors'
|
|
gem 'binding_of_caller'
|
|
gem 'pry-byebug'
|
|
gem 'pry-rails'
|
|
gem 'rubocop'
|
|
gem 'tunemygc'
|
|
gem 'faker'
|
|
gem 'timecop'
|
|
end
|