Sha256: 538a53522bf8a913e76304aad16a5e37d3234e7b3452b449fc44997bb902fbcf

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 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.
# 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
}

gem "SystemTimer", "1.2", :platform => :ruby_18

gem "rake"
gem "effin_utf8"

group :test do
  gem "rspec", "~> 2.8.0"
end

gemspec

# 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)
    puts "Using #{name} from #{local_path}..."
    gem name, options.merge(:path => local_path).delete_if { |key, _| [:git, :branch].include?(key) }
  else
    gem name, options
  end
end

custom_gem "amq-protocol", :git => "git://github.com/ruby-amqp/amq-protocol.git", :branch => "master"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bunny-0.9.0.pre6 Gemfile
bunny-0.9.0.pre5 Gemfile
bunny-0.9.0.pre4 Gemfile
bunny-0.9.0.pre3 Gemfile
bunny-0.9.0.pre2 Gemfile
bunny-0.9.0.pre1 Gemfile