forked from rspec/rspec-expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (38 loc) · 961 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
40
41
42
43
44
45
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"
gem "cucumber", "1.0.0"
gem "aruba", "0.4.2"
gem "nokogiri", "1.4.4"
platforms :jruby do
gem "jruby-openssl"
end
group :development do
gem "rcov", "0.9.9", :platforms => :mri
gem "relish", "~> 0.5.0"
gem "guard-rspec", "0.1.9"
gem "growl", "1.0.3"
platforms :mri_18 do
gem 'ruby-debug'
end
platforms :mri_19 do
if RUBY_VERSION == '1.9.2'
gem 'linecache19', '~> 0.5.12'
gem 'ruby-debug19', '~> 0.11.6'
gem 'ruby-debug-base19', '~> 0.11.25'
end
end
platforms :mri_18, :mri_19 do
gem "rb-fsevent", "~> 0.3.9"
gem "ruby-prof", "~> 0.9.2"
end
end