From 88e5dd91b7c5d8b8d8b638dc9971bb6b063178dd Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Fri, 7 Dec 2018 19:44:42 +0500 Subject: [PATCH] Add gem "pry-doc" --- Gemfile | 6 ++++++ Gemfile.lock | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/Gemfile b/Gemfile index d05785e..cab3a4d 100644 --- a/Gemfile +++ b/Gemfile @@ -42,6 +42,12 @@ gem 'bcrypt', '~> 3.1' # Reduces boot times through caching; required in config/boot.rb. gem 'bootsnap', '>= 1.1.0', require: false +# Provides extended documentation support for the REPL +# by means of improving the `show-doc` and `show-source` commands. +# With help of the plugin the commands are be able to display the source code +# and the docs of Ruby methods and classes implemented in C. +gem 'pry-doc', '~> 0.13' + # Use Pry as your Rails console. gem 'pry-rails', '~> 0.3' diff --git a/Gemfile.lock b/Gemfile.lock index 552a403..e023e54 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -242,6 +242,9 @@ GEM pry (0.12.2) coderay (~> 1.1.0) method_source (~> 0.9.0) + pry-doc (0.13.5) + pry (~> 0.11) + yard (~> 0.9.11) pry-rails (0.3.8) pry (>= 0.10.4) public_suffix (3.0.3) @@ -450,6 +453,7 @@ DEPENDENCIES omniauth (~> 1.8) omniauth-github (~> 1.3) pg (>= 0.18, < 2.0) + pry-doc (~> 0.13) pry-rails (~> 0.3) puma (~> 3.11) pundit (~> 2.0)