Skip to content

Commit 78499cb

Browse files
committed
Fix some more warnings
1 parent 6fe86b5 commit 78499cb

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

lib/spring/test/application.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def run(command, opts = {})
121121
@times << (Time.now - start_time) if @times
122122

123123
output.merge(status: status, command: command)
124-
rescue Timeout::Error => e
124+
rescue Timeout::Error
125125
raise Timeout::Error, "While running command:\n\n#{dump_streams(command, read_streams)}"
126126
end
127127

lib/spring/test/application_generator.rb

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ def initialize(version_constraint)
88
@version = RailsVersion.new(version_constraint.split(' ').last)
99
@application = Application.new(root)
1010
@bundled = false
11+
@installed = false
1112
end
1213

1314
def test_root

lib/spring/watcher/polling.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require "spring/watcher"
2-
31
module Spring
42
module Watcher
53
class Polling < Abstract

test/unit/client/version_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class VersionTest < ActiveSupport::TestCase
55
test "outputs current version number" do
66
version = Spring::Client::Version.new 'version'
77

8-
out, err = capture_io do
8+
out, _ = capture_io do
99
version.call
1010
end
1111

0 commit comments

Comments
 (0)