diff options
author | Mark Longair <mhl@pobox.com> | 2013-12-06 13:27:54 +0000 |
---|---|---|
committer | Mark Longair <mhl@pobox.com> | 2013-12-09 09:50:18 +0000 |
commit | 5102fa12d0fcbef03a980327ee3d87aaa4a3b780 (patch) | |
tree | 1f7009a12b8a3565a6ca7a92b06eeea5e66e0de3 | |
parent | 650cf463a4123fbeb270d049649f267cc074c5a9 (diff) |
Revert "Add byebug, for interactive debugging under Ruby 2"
This reverts commit 3b86cb6129140fc123dc3aeffcccdb5652f19085.
Conflicts:
Gemfile
The problem with this is the combination of these things:
* bundler's behaviour on seeing a platform that it doesn't understand
is to error, rather than to ignore it:
https://github.com/bundler/bundler/issues/2428
* mySociety's servers currently only have version 1.1.4 of bundler
* The :ruby_20 platform was only introduced in version 1.3.0 of
bundler:
https://github.com/bundler/bundler/blob/master/CHANGELOG.md#130pre3-dec-21-2012
So, for the moment we're just going to revert this change;
upgrading bundler on our servers is a non-trivial job and being
able to deploy on our servers is urgent and important.
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | Gemfile.lock | 4 |
2 files changed, 0 insertions, 5 deletions
@@ -77,7 +77,6 @@ end group :develop do gem 'ruby-debug', :platforms => :ruby_18 gem 'debugger', :platforms => :ruby_19 - gem 'byebug', :platforms => :ruby_20 gem 'annotate' end diff --git a/Gemfile.lock b/Gemfile.lock index c5c1fa3b4..62258c0c6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -51,9 +51,6 @@ GEM bootstrap-sass (2.3.1.2) sass (~> 3.2) builder (3.0.4) - byebug (2.3.1) - columnize (~> 0.3.6) - debugger-linecache (~> 1.2.0) capistrano (2.15.4) highline net-scp (>= 1.0.0) @@ -281,7 +278,6 @@ DEPENDENCIES acts_as_versioned! annotate bootstrap-sass - byebug capistrano charlock_holmes coffee-rails (~> 3.2.1) |