forked from rspec/rspec-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile-custom.sample
34 lines (32 loc) · 1.12 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
group :development do
gem 'interactive_rspec'
gem 'relish', '~> 0.5.0'
gem 'guard-rspec', '0.5.0'
gem 'growl', '1.0.3'
gem 'spork', '0.9.0'
platform :mri do
gem 'rb-fsevent', '~> 0.4.3.1'
gem 'ruby-prof', '~> 0.10.0'
case RUBY_VERSION
when /^1.8/
gem 'ruby-debug'
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
end