forked from rspec/rspec-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile-custom.sample
43 lines (39 loc) · 1.25 KB
/
Gemfile-custom.sample
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
group :development do
gem 'interactive_rspec'
gem 'yard', "~> 0.7.4"
gem "relish", "~> 0.5.0"
gem "guard-rspec", "0.5.0"
gem "growl", "1.0.3"
gem "spork", "0.9.0"
platforms :mri_18, :jruby do
gem "rcov", "0.9.10"
end
platforms :mri_18 do
gem 'ruby-debug'
end
platforms :mri_19 do
case RUBY_VERSION
when '1.9.2'
gem 'ruby-debug19', '0.11.6'
gem 'ruby-debug-base19', '0.11.25'
gem 'linecache19', '0.5.12'
when '1.9.3'
gem 'ruby-debug19', '0.11.6'
# NOTE - as of 2012-03-17 the following two gems have not been released,
# so if you see either of these errors when trying to install the bundle:
#
# Could not find gem 'ruby-debug-base19 (= 0.11.26) ruby' in the gems available on this machine.
# Could not find gem 'linecache19 (= 0.5.13) ruby' in the gems available on this machine.
#
# ... run 'script/download-ruby-debug-19-dependencies' and try again
#
# See http://blog.wyeworks.com/2011/11/1/ruby-1-9-3-and-ruby-debug for more info.
gem 'ruby-debug-base19', '0.11.26'
gem 'linecache19', '0.5.13'
end
end
platforms :mri_18, :mri_19 do
gem "rb-fsevent", "~> 0.4.3.1"
gem "ruby-prof", "~> 0.10.0"
end
end