Sha256: bbee8de61d0135b0be9329ebe7fd390007cd4b7666e9d916b2a776c798ca263b
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
# encoding: utf-8 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 end end 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" group :development do gem "yard" # yard tags this buddy along gem "RedCloth" 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" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
amq-client-0.7.0.alpha5 | Gemfile |
amq-client-0.7.0.alpha4 | Gemfile |