Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/spring/test/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Spring
module Test
class Application
DEFAULT_TIMEOUT = ENV['CI'] ? 30 : 10
DEFAULT_TIMEOUT = ENV['CI'] ? 300 : 10

attr_reader :root, :spring_env

Expand Down
4 changes: 4 additions & 0 deletions lib/spring/test/application_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ def install_spring
append_to_file(application.gemfile, "gem 'nokogiri', '~> 1.6.8'")
end

if RUBY_VERSION < "1.9"
append_to_file(application.gemfile, "gem 'rake', '12.2.1'")
end

application.bundle

FileUtils.rm_rf application.path("bin")
Expand Down