forked from rspec/rspec-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (32 loc) · 840 Bytes
/
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
39
source "http://rubygems.org"
### rspec libs
%w[rspec rspec-core rspec-expectations rspec-mocks].each do |lib|
library_path = File.expand_path("../../#{lib}", __FILE__)
if File.exist?(library_path)
gem lib, :path => library_path
else
gem lib, :git => "git://github.com/rspec/#{lib}.git"
end
end
### dev dependencies
gem "rake", "~> 0.9.2"
gem "cucumber", "1.0.1"
gem "aruba", "0.4.2"
gem "ZenTest", "4.6.2"
gem "nokogiri", "1.5.0"
gem "fakefs", "0.4.0", :require => "fakefs/safe"
platforms :jruby do
gem "jruby-openssl"
end
### rspec-core only
gem "mocha", "~> 0.9.10"
gem "rr", "~> 1.0.2"
gem "flexmock", "0.8.8"
### optional runtime deps
gem "syntax", "1.0.0"
group :development do
platforms :mri_18, :jruby do
gem "rcov", "0.9.10"
end
end
eval File.read('Gemfile-custom') if File.exist?('Gemfile-custom')