Sha256: f626530904cb81fcfa3f9842bf21e113a2b1fefed81c106ed78c95954ea020ea

Contents?: true

Size: 1.04 KB

Versions: 29

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

custom_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

29 entries across 29 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha34 Gemfile
amq-client-0.7.0.alpha33 Gemfile
amq-client-0.7.0.alpha32 Gemfile
amq-client-0.7.0.alpha31 Gemfile
amq-client-0.7.0.alpha30 Gemfile
amq-client-0.7.0.alpha29 Gemfile
amq-client-0.7.0.alpha28 Gemfile
amq-client-0.7.0.alpha27 Gemfile
amq-client-0.7.0.alpha26 Gemfile
amq-client-0.7.0.alpha25 Gemfile
amq-client-0.7.0.alpha24 Gemfile
amq-client-0.7.0.alpha23 Gemfile
amq-client-0.7.0.alpha22 Gemfile
amq-client-0.7.0.alpha21 Gemfile
amq-client-0.7.0.alpha20 Gemfile
amq-client-0.7.0.alpha19 Gemfile
amq-client-0.7.0.alpha18 Gemfile
amq-client-0.7.0.alpha17 Gemfile
amq-client-0.7.0.alpha16 Gemfile
amq-client-0.7.0.alpha15 Gemfile