forked from ruby-amqp/amq-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
38 lines (31 loc) · 1.06 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# encoding: utf-8
source :rubygems
# 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)
gem name, options.merge(:path => local_path).delete_if { |key, _| [:git, :branch].include?(key) }
else
gem name, options
end
end
custom_gem "eventmachine"
# cool.io uses iobuffer that won't compile on JRuby
# (and, probably, Windows)
gem "cool.io", :platform => :ruby
custom_gem "amq-protocol", :git => "git://github.com/ruby-amqp/amq-protocol.git", :branch => "master"
group :development do
gem "yard"
# yard tags this buddy along
gem "RedCloth", :platform => :mri
gem "nake", :platform => :ruby_19
gem "contributors", :platform => :ruby_19
# excludes Windows and JRuby
gem "perftools.rb", :platform => :mri
end
group :test do
gem "rspec", ">=2.0.0"
gem "autotest"
custom_gem "evented-spec", :git => "git://github.com/ruby-amqp/evented-spec.git", :branch => "master"
end