Sha256: 12540add084efe0f6c524f869b4cbf6a44691f93e15bb7cfdc65b3894aadb0ce
Contents?: true
Size: 1.15 KB
Versions: 6
Compression:
Stored size: 1.15 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" gem "yajl-ruby" # 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
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
amqp-1.1.3 | Gemfile |
amqp-1.1.2 | Gemfile |
amqp-1.1.1 | Gemfile |
amqp-1.1.0 | Gemfile |
amqp-1.1.0.rc1 | Gemfile |
amqp-1.1.0.pre2 | Gemfile |