Sha256: a9484cf1bf2eed4bd23af2db768393711f22ee9423d17b8450c3e1d4252919be

Contents?: true

Size: 704 Bytes

Versions: 3

Compression:

Stored size: 704 Bytes

Contents

# encoding: utf-8

# Use local clones if possible.
# If you want to use your local copy, just symlink it to vendor.
extend Module.new {
  def gem(name, options = 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, options
    end
  end
}

source :rubygems

group(:development) do
  gem "nake",         :platform => :mri_19

  # excludes Windows, Rubinius and JRuby
  gem "perftools.rb", :platform => :mri_18
end

group(:test) do
  gem "rspec", ">=2.0.0"
  gem "simplecov", :platform => :mri_19
  gem "effin_utf8"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
amq-protocol-0.8.1 Gemfile
amq-protocol-0.8.0 Gemfile
amq-protocol-0.7.0 Gemfile