Removes pry and pry-rails from production (#2629)

Closes #2626
This commit is contained in:
rhymes 2019-04-30 20:29:05 +02:00 committed by Ben Halpern
parent fd63db2aa6
commit 89e986f066

View file

@ -64,8 +64,6 @@ gem "omniauth", "~> 1.9" # A generalized Rack framework for multiple-provider au
gem "omniauth-github", "~> 1.3" # OmniAuth strategy for GitHub
gem "omniauth-twitter", "~> 1.4" # OmniAuth strategy for Twitter
gem "pg", "~> 1.1" # Pg is the Ruby interface to the PostgreSQL RDBMS
gem "pry", "~> 0.12" # An IRB alternative and runtime developer console
gem "pry-rails", "~> 0.3" # Use Pry as your rails console
gem "puma", "~> 3.12" # Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server
gem "pundit", "~> 2.0" # Object oriented authorization for Rails applications
gem "pusher", "~> 1.3" # Ruby library for Pusher Channels HTTP API
@ -116,6 +114,8 @@ group :development do
gem "guard-livereload", "~> 2.5", require: false # Guard::LiveReload automatically reloads your browser when 'view' files are modified
gem "guard-rspec", "~> 4.7", require: false # Guard::RSpec automatically run your specs
gem "memory_profiler", "~> 0.9", require: false # Memory profiling routines for Ruby 2.3+
gem "pry", "~> 0.12" # An IRB alternative and runtime developer console
gem "pry-rails", "~> 0.3" # Use Pry as your rails console
gem "web-console", "~> 3.7" # Rails Console on the Browser
end