We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf2221 commit b282278Copy full SHA for b282278
Gemfile
@@ -24,6 +24,9 @@ if RUBY_VERSION >= '1.9.3'
24
gem 'capybara', '~> 2.2.0', :require => false
25
end
26
27
+# Rack::Cache 1.3.0 requires Ruby >= 2.0.0
28
+gem 'rack-cache', '< 1.3.0' if RUBY_VERSION < '2.0.0'
29
+
30
if RUBY_VERSION < '1.9.2'
31
gem 'nokogiri', '~> 1.5.0'
32
example_app_generator/generate_app.rb
@@ -17,6 +17,9 @@
17
18
# Use our version of RSpec and Rails
19
append_to_file 'Gemfile', <<-EOT.gsub(/^ +\|/, '')
20
+ |# Rack::Cache 1.3.0 requires Ruby >= 2.0.0
21
+ |gem 'rack-cache', '< 1.3.0' if RUBY_VERSION < '2.0.0'
22
+ |
23
|gem 'rspec-rails',
| :path => '#{rspec_rails_repo_path}',
| :groups => [:development, :test]
0 commit comments