Sha256: 6fc9dd2001f4f74d9bb00735d44ff448c7152ca8081e33d2795b66d4149fae39

Contents?: true

Size: 1.13 KB

Versions: 16

Compression:

Stored size: 1.13 KB

Contents

# encoding: utf-8

source "https://rubygems.org"

# 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 "eventmachine", ">= 1.0.0"
custom_gem "amq-protocol", :git => "git://github.com/ruby-amqp/amq-protocol.git", :branch => "master"

group :development do
  gem "yard", ">= 0.7.2"
  # yard tags this buddy along
  gem "RedCloth",  :platform => :mri

  platform :ruby do
    gem "rdiscount"

    # To test event loop helper and various Rack apps
    gem "thin"
    gem "unicorn"
  end
end

group :test do
  gem "rspec", "~> 2.6.0"
  gem "rake",  "~> 10.0.0"

  custom_gem "evented-spec", :git => "git://github.com/ruby-amqp/evented-spec.git", :branch => "master"
  gem "effin_utf8"

  gem "multi_json"

  gem "json",      :platform => :jruby
  gem "yajl-ruby", :platform => :ruby_18
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
amqp-1.6.0 Gemfile
amqp-1.5.3 Gemfile
amqp-1.5.2 Gemfile
amqp-1.5.1 Gemfile
amqp-1.5.0 Gemfile
amqp-1.4.2 Gemfile
amqp-1.4.1 Gemfile
amqp-1.4.0 Gemfile
amqp-1.3.0 Gemfile
amqp-1.2.1 Gemfile
amqp-1.2.0 Gemfile
amqp-1.1.8 Gemfile
amqp-1.1.7 Gemfile
amqp-1.1.6 Gemfile
amqp-1.1.5 Gemfile
amqp-1.1.4 Gemfile