Gemfile in amq-client-0.7.0.alpha35 vs Gemfile in amq-client-0.8.0

- old
+ new

@@ -2,37 +2,47 @@ source :rubygems # Use local clones if possible. # If you want to use your local copy, just symlink it to vendor. -def custom_gem(name, options = Hash.new) - local_path = File.expand_path("../vendor/#{name}", __FILE__) - if File.exist?(local_path) - gem name, options.merge(:path => local_path).delete_if { |key, _| [:git, :branch].include?(key) } - else - gem name, options +# See http://blog.101ideas.cz/posts/custom-gems-in-gemfile.html +extend Module.new { + def gem(name, *args) + options = args.last.is_a?(Hash) ? args.last : Hash.new + + local_path = File.expand_path("../vendor/#{name}", __FILE__) + if File.exist?(local_path) + super name, options.merge(:path => local_path). + delete_if { |key, _| [:git, :branch].include?(key) } + else + super name, *args + end end -end +} -custom_gem "eventmachine" +gem "eventmachine" # cool.io uses iobuffer that won't compile on JRuby # (and, probably, Windows) gem "cool.io", :platform => :ruby -custom_gem "amq-protocol", :git => "git://github.com/ruby-amqp/amq-protocol.git", :branch => "master" +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 - gem "contributors", :platform => :ruby_19 - # excludes Windows and JRuby gem "perftools.rb", :platform => :mri end group :test do gem "rspec", ">=2.0.0" gem "autotest" - custom_gem "evented-spec", :git => "git://github.com/ruby-amqp/evented-spec.git", :branch => "master" + gem "evented-spec", :git => "git://github.com/ruby-amqp/evented-spec.git", :branch => "master" + gem "effin_utf8" + + gem "multi_json" + + gem "json", :platform => :jruby + gem "yajl-ruby", :platform => :ruby_18 end