Skip to content

Commit 98a7631

Browse files
authored
Merge pull request #659 from casperisfine/drop-set-dependency
Stop depending on Set
2 parents fcd8a0f + 7f4ddf9 commit 98a7631

File tree

7 files changed

+21
-18
lines changed

7 files changed

+21
-18
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Next Release
22

3+
* Stop requiring `set` before bundler can select the proper version. This could result in
4+
`already defined constant` warnings during boot (#659).
5+
36
## 3.1.1
47

58
* Fix compatibility issues with code that raises exceptions with frozen backtraces.

lib/spring/application.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ def initialize(manager, original_env, spring_env = Env.new)
1111
@original_env = original_env
1212
@spring_env = spring_env
1313
@mutex = Mutex.new
14-
@waiting = Set.new
15-
@clients = Set.new
14+
@waiting = {}
15+
@clients = {}
1616
@preloaded = false
1717
@state = :initialized
1818
@interrupt = IO.pipe
@@ -150,7 +150,7 @@ def serve(client)
150150
log "got client"
151151
manager.puts
152152

153-
@clients << client
153+
@clients[client] = true
154154

155155
_stdout, stderr, _stdin = streams = 3.times.map { client.recv_io }
156156
[STDOUT, STDERR, STDIN].zip(streams).each { |a, b| a.reopen(b) }
@@ -181,7 +181,7 @@ def serve(client)
181181
pid = fork {
182182
# Make sure to close other clients otherwise their graceful termination
183183
# will be impossible due to reference from this fork.
184-
@clients.select { |c| c != client }.each(&:close)
184+
@clients.each_key { |c| c.close if c != client }
185185

186186
Process.setsid
187187
IGNORE_SIGNALS.each { |sig| trap(sig, "DEFAULT") }
@@ -245,7 +245,7 @@ def terminate
245245
if exiting?
246246
# Ensure that we do not ignore subsequent termination attempts
247247
log "forced exit"
248-
@waiting.each { |pid| Process.kill("TERM", pid) }
248+
@waiting.each_key { |pid| Process.kill("TERM", pid) }
249249
Kernel.exit
250250
else
251251
state! :terminating
@@ -337,7 +337,7 @@ def reset_streams
337337
end
338338

339339
def wait(pid, streams, client)
340-
@mutex.synchronize { @waiting << pid }
340+
@mutex.synchronize { @waiting[pid] = true }
341341

342342
# Wait in a separate thread so we can run multiple commands at once
343343
Spring.failsafe_thread {

lib/spring/client/binstub.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def initialize(args)
146146
@mode = :add
147147
@items = args.drop(1)
148148
.map { |name| find_commands name }
149-
.inject(Set.new, :|)
149+
.flatten.uniq
150150
.map { |command| Item.new(command) }
151151
end
152152

lib/spring/client/rails.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Spring
44
module Client
55
class Rails < Command
6-
COMMANDS = Set.new %w(console runner generate destroy test)
6+
COMMANDS = %w(console runner generate destroy test)
77

88
ALIASES = {
99
"c" => "console",

lib/spring/watcher/abstract.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def initialize(root, latency)
1919

2020
@root = File.realpath(root)
2121
@latency = latency
22-
@files = Set.new
23-
@directories = Set.new
22+
@files = {}
23+
@directories = {}
2424
@stale = false
2525
@listeners = []
2626

@@ -63,10 +63,10 @@ def add(*items)
6363
synchronize {
6464
items.each do |item|
6565
if item.directory?
66-
directories << item.realpath.to_s
66+
directories[item.realpath.to_s] = true
6767
else
6868
begin
69-
files << item.realpath.to_s
69+
files[item.realpath.to_s] = true
7070
rescue Errno::ENOENT
7171
# Race condition. Ignore symlinks whose target was removed
7272
# since the check above, or are deeply chained.

lib/spring/watcher/polling.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def compute_mtime
9191
end
9292

9393
def expanded_files
94-
files + Dir["{#{directories.map { |d| "#{d}/**/*" }.join(",")}}"]
94+
(files.keys + Dir["{#{directories.keys.map { |d| "#{d}/**/*" }.join(",")}}"]).uniq
9595
end
9696
end
9797
end

test/support/watcher_test.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@ def assert_not_stale
149149
test "add relative path" do
150150
File.write("#{dir}/foo", "foo")
151151
watcher.add "foo"
152-
assert_equal ["#{dir}/foo"], watcher.files.to_a
152+
assert_equal ["#{dir}/foo"], watcher.files.keys
153153
end
154154

155155
test "add dot relative path" do
156156
File.write("#{dir}/foo", "foo")
157157
watcher.add "./foo"
158-
assert_equal ["#{dir}/foo"], watcher.files.to_a
158+
assert_equal ["#{dir}/foo"], watcher.files.keys
159159
end
160160

161161
test "add non existent file" do
@@ -167,20 +167,20 @@ def assert_not_stale
167167
File.write("#{dir}/foo", "foo")
168168
File.write("#{dir}/bar", "bar")
169169
watcher.add "foo", "bar"
170-
assert_equal ["#{dir}/foo", "#{dir}/bar"], watcher.files.to_a
170+
assert_equal ["#{dir}/foo", "#{dir}/bar"], watcher.files.keys
171171
end
172172

173173
test "add files as nested array" do
174174
File.write("#{dir}/foo", "foo")
175175
watcher.add [["foo"]]
176-
assert_equal ["#{dir}/foo"], watcher.files.to_a
176+
assert_equal ["#{dir}/foo"], watcher.files.keys
177177
end
178178

179179
test "add symlink" do
180180
File.write("#{dir}/bar", "bar")
181181
File.symlink("#{dir}/bar", "#{dir}/foo")
182182
watcher.add './foo'
183-
assert_equal ["#{dir}/bar"], watcher.files.to_a
183+
assert_equal ["#{dir}/bar"], watcher.files.keys
184184
end
185185

186186
test "add dangling symlink" do

0 commit comments

Comments
 (0)