forked from rspec/rspec-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
52 lines (43 loc) · 1.09 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
source "http://rubygems.org"
### rspec libs
%w[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
end
end
### dev dependencies
gem "rake", "0.8.7"
gem "cucumber", "0.9.4"
gem "aruba", "0.2.2"
gem "rcov", "0.9.9", :platforms => :mri
gem "relish", "0.2.0"
gem "guard-rspec", "0.1.9"
gem "growl", "1.0.3"
gem "ZenTest", "~> 4.4.2"
gem "nokogiri", "1.4.4"
if RUBY_PLATFORM =~ /darwin/
gem "autotest-fsevent", "~> 0.2.4"
gem "autotest-growl", "~> 0.2.9"
end
gem "ruby-debug", :platforms => :mri_18
gem "ruby-debug19", "~> 0.11.6", :platforms => :mri_19
case RUBY_VERSION
when '1.9.1'; gem 'ruby-debug-base19', '0.11.23'
when '1.9.2'; gem 'ruby-debug-base19', '0.11.24'
end
platforms :mri_18, :mri_19 do
gem "rb-fsevent", "~> 0.3.9"
gem "ruby-prof", "~> 0.9.2"
end
platforms :jruby do
gem "jruby-openssl"
end
### rspec-core only
gem "mocha", "~> 0.9.10"
gem "rr", "~> 1.0.2"
gem "flexmock", "~> 0.8.11"
### optional runtime deps
gem "syntax", "1.0.0"