File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 25
25
gem 'rake' , '~> 10.0' # rake 11 requires Ruby 1.9.3 or later
26
26
end
27
27
28
+ # Version 3 of mime-types 3 requires Ruby 2.0
29
+ if RUBY_VERSION < '2.0.0'
30
+ gem 'mime-types' , '< 3'
31
+ end
32
+
28
33
# Capybara versions that support RSpec 3 only support RUBY_VERSION >= 1.9.3
29
34
if RUBY_VERSION >= '1.9.3'
30
35
gem 'capybara' , '~> 2.2.0' , :require => false
Original file line number Diff line number Diff line change 38
38
| gem 'rake', '~> 10.0' # rake 11 requires Ruby 1.9.3 or later
39
39
|end
40
40
|
41
+ |# Version 3 of mime-types 3 requires Ruby 2.0
42
+ |if RUBY_VERSION < '2.0.0'
43
+ | gem 'mime-types', '< 3'
44
+ |end
45
+ |
41
46
|gem 'rspec-rails',
42
47
| :path => '#{ rspec_rails_repo_path } ',
43
48
| :groups => [:development, :test]
You can’t perform that action at this time.
0 commit comments