diff options
| author | Ash McKenzie <amckenzie@gitlab.com> | 2018-12-06 19:55:16 +1100 |
|---|---|---|
| committer | Ash McKenzie <amckenzie@gitlab.com> | 2018-12-13 14:22:07 +1100 |
| commit | 4e478760eec7cf03964ab7826733850ccd4d9f54 (patch) | |
| tree | a0710fbeef824c942a9a7544ff1368b4991ef885 | |
| parent | 1252a5d699ade33f35ed383c2d759f4d2bbb4d66 (diff) | |
| download | gitlab-shell-4e478760eec7cf03964ab7826733850ccd4d9f54.tar.gz | |
Add pry-byebug to list of dev gems
| -rw-r--r-- | Gemfile | 4 | ||||
| -rw-r--r-- | Gemfile.lock | 9 |
2 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,9 @@ source 'https://rubygems.org' +group :development do + gem 'pry-byebug', '~> 3.6', require: false +end + group :development, :test do gem 'listen', '~> 0.5.0' gem 'rspec', '~> 3.8.0' diff --git a/Gemfile.lock b/Gemfile.lock index 9e76bc9..369d182 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,6 +10,7 @@ GEM ast (2.4.0) binding_of_caller (0.8.0) debug_inspector (>= 0.0.1) + byebug (10.0.2) coderay (1.1.2) concord (0.1.5) adamantium (~> 0.2.0) @@ -27,6 +28,7 @@ GEM listen (0.5.3) memoizable (0.4.2) thread_safe (~> 0.3, >= 0.3.1) + method_source (0.9.2) parallel (1.12.1) parser (2.5.3.0) ast (~> 2.4.0) @@ -36,6 +38,12 @@ GEM parser unparser procto (0.0.3) + pry (0.12.2) + coderay (~> 1.1.0) + method_source (~> 0.9.0) + pry-byebug (3.6.0) + byebug (~> 10.0) + pry (~> 0.10) public_suffix (3.0.3) rainbow (3.0.0) rspec (3.8.0) @@ -93,6 +101,7 @@ PLATFORMS DEPENDENCIES listen (~> 0.5.0) + pry-byebug (~> 3.6) rspec (~> 3.8.0) rspec-parameterized (~> 0.4.0) rubocop (= 0.61) |
