ACK, pushed
On 24/11/11 02:34, David Lutterkort wrote:
> This fails in two places: (1) ruby-debug19 is not found (it shouldn't
> look for it since I am on mri_18, but who knows); is there a good reason
> why we even mention ruby-debug in the Gemfile ? FWIW, you can do
> development perfectly fine without a debugger installed. (2) no rspec ~>
> 2.0.0; I have 2.7.0. Is there a good reason why we can't just require
> rspec >= 2.0.0 ?
>
> TL;DR: can we commit this patch (and whoever ACK's this should just
> commit it):
>
> diff --git a/server/Gemfile b/server/Gemfile
> index f453f4a..b3180e3 100644
> --- a/server/Gemfile
> +++ b/server/Gemfile
> @@ -3,8 +3,6 @@ source "http://rubygems.org"
> gemspec
>
> group :development do
> - gem 'ruby-debug', :platforms => :mri_18
> - gem 'ruby-debug19', :platforms => :mri_19, :require => 'ruby-debug'
> gem "compass", ">= 0.8.17"
> gem "vcr"
> gem "webmock"
> @@ -12,6 +10,6 @@ group :development do
> gem "ci_reporter"
> gem "cucumber", ">= 0.6.3"
> gem "rcov", ">= 0.9.8"
> - gem "rspec", "~> 2.0.0"
> + gem "rspec", ">= 2.0.0"
> end
>
> David
>
>