diff options
-rw-r--r-- | Gemfile | 5 | ||||
-rw-r--r-- | Gemfile.lock | 19 |
2 files changed, 22 insertions, 2 deletions
@@ -30,7 +30,7 @@ gem 'rake', '~> 0.9.2.2' gem 'rspec', '~> 1.3.2' gem 'rspec-rails', '~> 1.3.4' gem 'ruby-msg', '~> 1.5.0' -gem 'test-unit', '~> 1.2.3' if RUBY_VERSION.to_f >= 1.9 +gem 'test-unit', '~> 1.2.3', :platforms => :ruby_19 gem 'vpim' gem 'will_paginate', '~> 2.3.11' # when 1.2.9 is released by the maintainer, we can stop using this fork: @@ -45,6 +45,7 @@ group :test do end group :develop do - gem 'ruby-debug' + gem 'ruby-debug', :platforms => :ruby_18 + gem 'ruby-debug19', :platforms => :ruby_19 gem 'annotate' end diff --git a/Gemfile.lock b/Gemfile.lock index f243ffaad..35edac1e9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -25,6 +25,7 @@ GEM net-sftp (>= 2.0.0) net-ssh (>= 2.0.14) net-ssh-gateway (>= 1.1.0) + archive-tar-minitar (0.5.2) columnize (0.3.6) fakeweb (1.3.0) fast_gettext (0.6.8) @@ -32,9 +33,13 @@ GEM gettext (2.2.1) locale highline (1.6.13) + hoe (3.0.8) + rake (~> 0.8) json (1.5.4) linecache (0.46) rbx-require-relative (> 0.0.4) + linecache19 (0.5.12) + ruby_core_source (>= 0.1.4) locale (2.0.5) mahoro (0.3) memcache-client (1.8.5) @@ -72,10 +77,22 @@ GEM ruby-debug-base (~> 0.10.4.0) ruby-debug-base (0.10.4) linecache (>= 0.3) + ruby-debug-base19 (0.11.25) + columnize (>= 0.3.1) + linecache19 (>= 0.5.11) + ruby_core_source (>= 0.1.4) + ruby-debug19 (0.11.6) + columnize (>= 0.3.1) + linecache19 (>= 0.5.11) + ruby-debug-base19 (>= 0.11.19) ruby-msg (1.5.0) ruby-ole (>= 1.2.8) vpim (>= 0.360) ruby-ole (1.2.11.3) + ruby_core_source (0.1.5) + archive-tar-minitar (>= 0.5.2) + test-unit (1.2.3) + hoe (>= 1.5.1) vpim (0.695) will_paginate (2.3.16) xapian-full-alaveteli (1.2.9.5) @@ -110,7 +127,9 @@ DEPENDENCIES rspec (~> 1.3.2) rspec-rails (~> 1.3.4) ruby-debug + ruby-debug19 ruby-msg (~> 1.5.0) + test-unit (~> 1.2.3) vpim will_paginate (~> 2.3.11) xapian-full-alaveteli (~> 1.2.9.5) |