Sha256: b3b56101574826770c2257fb44ea1e3d286d3e39f656f1984c14d266c2c7bf68

Contents?: true

Size: 685 Bytes

Versions: 2

Compression:

Stored size: 685 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
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
amq-protocol-0.7.0.beta2 Gemfile
amq-protocol-0.7.0.beta1 Gemfile