diff --git a/Gemfile b/Gemfile index d1fed5a..7d5f9ac 100644 --- a/Gemfile +++ b/Gemfile @@ -30,6 +30,9 @@ gem 'turbolinks', '~> 5' # Reduces boot times through caching; required in config/boot.rb. gem 'bootsnap', '>= 1.1.0', require: false +# Use Pry as your Rails console. +gem 'pry-rails', '~> 0.3' + group :development, :test do # Call 'byebug' anywhere in the code to stop execution # and get a debugger console. diff --git a/Gemfile.lock b/Gemfile.lock index 4996a35..b08cae2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -48,6 +48,7 @@ GEM msgpack (~> 1.0) builder (3.2.3) byebug (10.0.2) + coderay (1.1.2) concurrent-ruby (1.1.3) crass (1.0.4) erubi (1.7.1) @@ -78,6 +79,11 @@ GEM nokogiri (1.8.5) mini_portile2 (~> 2.3.0) pg (1.1.3) + pry (0.12.2) + coderay (~> 1.1.0) + method_source (~> 0.9.0) + pry-rails (0.3.7) + pry (>= 0.10.4) puma (3.12.0) rack (2.0.6) rack-test (1.1.0) @@ -161,6 +167,7 @@ DEPENDENCIES byebug listen (>= 3.0.5, < 3.2) pg (>= 0.18, < 2.0) + pry-rails (~> 0.3) puma (~> 3.11) rails (~> 5.2.1) sass-rails (~> 5.0)