Gemfile in amq-client-1.0.4 vs Gemfile in amq-client-1.1.0.pre1

- old
+ new

@@ -1,8 +1,8 @@ # encoding: utf-8 -source :rubygems +source "https://rubygems.org" # Use local clones if possible. # If you want to use your local copy, just symlink it to vendor. # See http://blog.101ideas.cz/posts/custom-gems-in-gemfile.html extend Module.new { @@ -18,27 +18,24 @@ super name, *args end end } -gem "eventmachine" +gem "eventmachine", ">= 1.0.0" # cool.io uses iobuffer that won't compile on JRuby # (and, probably, Windows) gem "cool.io", :platform => :ruby gem "amq-protocol", :git => "git://github.com/ruby-amqp/amq-protocol.git", :branch => "master" group :development do gem "yard" # yard tags this buddy along gem "RedCloth", :platform => :mri - - gem "nake", :platform => :ruby_19 - # excludes Windows and JRuby - gem "perftools.rb", :platform => :mri end group :test do - gem "rspec", ">= 2.6.0" + gem "rake", ">= 10.0.3" + gem "rspec", ">= 2.13.0" gem "evented-spec", :git => "git://github.com/ruby-amqp/evented-spec.git", :branch => "master" gem "effin_utf8" gem "multi_json"