husky 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9bdbbd9e91a8edae1d4a04bb34a7e0b1d0748cd8
4
- data.tar.gz: 6848fd47bb427888400a87402067ca6348acfcff
3
+ metadata.gz: 291839d8360ad855bb77a59848b590ad42a22db3
4
+ data.tar.gz: 01c67b0b89979eb6fe1dc386a13ef0bb4c5a25d9
5
5
  SHA512:
6
- metadata.gz: c9a612f7e4fabc9d4039c694a6bdbd7110a4ac31f2e011b8d9a1841b88e7e967048c92f5b17862ca3e14706db7f7e37f6ce7f1610c12969bcbb4e8578b517f6a
7
- data.tar.gz: a8c28e55216e531453d8b44f47be00f5a2a3164a2b38f1ebf2fceafc1986f0b1ae8c71086928dfe8569faa4dfa242c3bd63e59fd345e4931dd362bf9cb3dbb2d
6
+ metadata.gz: c3e6d7cc798d94b33c761d7348c0a4a01236998186f98fe1b3aa00bb46371221b9ba11df89622f619ac27e6a15a0346f5e2fe9927ac8e37e323f686639968818
7
+ data.tar.gz: 332bb75f4b27e3ea0738b7ff1694a9b7edf2b9370e140048d5af278b64c3157f59f1367382362575e5a95a92b96d38a532cba52c6a55f4845c7e0a970d846182
@@ -0,0 +1,36 @@
1
+ class PassAlong
2
+
3
+ def self.all_variables(sender, receiver)
4
+ sender.class.instance_methods(false).each do |method|
5
+ new(sender, receiver, method).run
6
+ end
7
+ end
8
+
9
+ attr_reader :sender, :receiver, :method
10
+
11
+ def initialize(sender, receiver, method)
12
+ @sender = sender
13
+ @receiver = receiver
14
+ @method = method
15
+ end
16
+
17
+ def run
18
+ sender.class.after method do |*, obj|
19
+ variables = get_variables_from(sender)
20
+ variables.each do |var|
21
+ receiver.instance_variable_set(var, sender.instance_variable_get(var))
22
+ end
23
+ end
24
+ end
25
+
26
+ private
27
+
28
+ def get_variables_from(sender)
29
+ variables = sender.instance_variables.dup
30
+ variables.delete(:@context)
31
+ variables.delete(:@delegate_sd_obj)
32
+ variables
33
+ end
34
+
35
+
36
+ end
@@ -1,5 +1,6 @@
1
1
  require 'delegate'
2
2
  require 'after_do'
3
+ require 'husky/pass_along'
3
4
 
4
5
  module Husky
5
6
 
@@ -42,15 +43,6 @@ module Husky
42
43
 
43
44
  end
44
45
 
45
- Husky::Responder.after :initialize do |*, obj|
46
- obj.class.instance_methods(false).each do |method|
47
- obj.class.after method do |*, obj|
48
- pass_alongs = obj.instance_variables.dup
49
- pass_alongs.delete(:@context)
50
- pass_alongs.delete(:@delegate_sd_obj)
51
- pass_alongs.each do |var|
52
- obj.context.instance_variable_set(var, obj.instance_variable_get(var))
53
- end
54
- end
55
- end
56
- end
46
+ Husky::Responder.after :initialize do |*, responder|
47
+ PassAlong.all_variables(responder, responder.context)
48
+ end
@@ -1,3 +1,3 @@
1
1
  module Husky
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -1,8 +1,7 @@
1
1
  class HomeController < ApplicationController
2
2
 
3
3
  def index
4
- car = "Accord"
5
- chase = ChaseCar.new(car)
4
+ chase = ChaseCar.new(params[:car])
6
5
  listen_to chase
7
6
  chase.run
8
7
  end
@@ -952,3 +952,45 @@ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1
952
952
 
953
953
 
954
954
  Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-02-14 13:19:24 -0500
955
+
956
+
957
+ Started GET "/" for ::1 at 2016-02-14 13:41:30 -0500
958
+ Processing by HomeController#index as HTML
959
+ Rendered home/index.html.erb within layouts/application (2.0ms)
960
+ Completed 200 OK in 251ms (Views: 248.2ms | ActiveRecord: 0.0ms)
961
+
962
+
963
+ Started GET "/" for ::1 at 2016-02-14 13:42:33 -0500
964
+ Processing by HomeController#index as HTML
965
+ Rendered home/index.html.erb within layouts/application (2.0ms)
966
+ Completed 200 OK in 267ms (Views: 263.6ms | ActiveRecord: 0.0ms)
967
+
968
+
969
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-02-14 13:42:34 -0500
970
+
971
+
972
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-02-14 13:42:34 -0500
973
+
974
+
975
+ Started GET "/" for ::1 at 2016-02-14 13:44:40 -0500
976
+ Processing by HomeController#index as HTML
977
+ Rendered home/index.html.erb within layouts/application (1.9ms)
978
+ Completed 200 OK in 255ms (Views: 251.9ms | ActiveRecord: 0.0ms)
979
+
980
+
981
+ Started GET "/" for ::1 at 2016-02-14 13:46:46 -0500
982
+ Processing by HomeController#index as HTML
983
+ Rendered home/index.html.erb within layouts/application (2.8ms)
984
+ Completed 200 OK in 326ms (Views: 321.5ms | ActiveRecord: 0.0ms)
985
+
986
+
987
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-02-14 13:46:46 -0500
988
+
989
+
990
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-02-14 13:46:46 -0500
991
+
992
+
993
+ Started GET "/" for ::1 at 2016-02-14 13:47:35 -0500
994
+ Processing by HomeController#index as HTML
995
+ Rendered home/index.html.erb within layouts/application (2.2ms)
996
+ Completed 200 OK in 253ms (Views: 250.2ms | ActiveRecord: 0.0ms)
@@ -8,3 +8,243 @@ HuskyTest: test_truth
8
8
  HuskyTest: test_truth
9
9
  ---------------------
10
10
   (0.1ms) rollback transaction
11
+  (0.2ms) begin transaction
12
+ ---------------------
13
+ HuskyTest: test_truth
14
+ ---------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ -------------------------------------------------------------------------------------------
18
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder
19
+ -------------------------------------------------------------------------------------------
20
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:33:19 -0500
21
+ Processing by HomeController#index as HTML
22
+ Parameters: {"car"=>"Mustang"}
23
+ Rendered home/index.html.erb within layouts/application (1.9ms)
24
+ Completed 200 OK in 203ms (Views: 199.5ms | ActiveRecord: 0.0ms)
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ ---------------------
28
+ HuskyTest: test_truth
29
+ ---------------------
30
+  (0.1ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ -------------------------------------------------------------------------------------------
33
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder
34
+ -------------------------------------------------------------------------------------------
35
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:35:00 -0500
36
+ Processing by HomeController#index as HTML
37
+ Parameters: {"car"=>"Mustang"}
38
+ Rendered home/index.html.erb within layouts/application (2.5ms)
39
+ Completed 200 OK in 196ms (Views: 193.3ms | ActiveRecord: 0.0ms)
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ -------------------------------------------------------------------------------------------
43
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder
44
+ -------------------------------------------------------------------------------------------
45
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:35:14 -0500
46
+ Processing by HomeController#index as HTML
47
+ Parameters: {"car"=>"Mustang"}
48
+ Rendered home/index.html.erb within layouts/application (1.6ms)
49
+ Completed 200 OK in 194ms (Views: 192.0ms | ActiveRecord: 0.0ms)
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ ---------------------
53
+ HuskyTest: test_truth
54
+ ---------------------
55
+  (0.0ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ -------------------------------------------------------------------------------------------
58
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder
59
+ -------------------------------------------------------------------------------------------
60
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:35:44 -0500
61
+ Processing by HomeController#index as HTML
62
+ Parameters: {"car"=>"Mustang"}
63
+ Rendered home/index.html.erb within layouts/application (1.8ms)
64
+ Completed 200 OK in 201ms (Views: 199.2ms | ActiveRecord: 0.0ms)
65
+  (0.1ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ ---------------------
68
+ HuskyTest: test_truth
69
+ ---------------------
70
+  (0.0ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ --------------------------------------------------------------------------------
73
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender
74
+ --------------------------------------------------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ ---------------------
78
+ HuskyTest: test_truth
79
+ ---------------------
80
+  (0.0ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ----------------------------------------------------------------------------------------------------------------
83
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
84
+ ----------------------------------------------------------------------------------------------------------------
85
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:42:31 -0500
86
+ Processing by HomeController#index as HTML
87
+ Parameters: {"car"=>"Mustang"}
88
+ Rendered home/index.html.erb within layouts/application (1.8ms)
89
+ Completed 200 OK in 196ms (Views: 193.5ms | ActiveRecord: 0.0ms)
90
+  (0.1ms) rollback transaction
91
+  (0.2ms) begin transaction
92
+ ---------------------
93
+ HuskyTest: test_truth
94
+ ---------------------
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ ----------------------------------------------------------------------------------------------------------------
98
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
99
+ ----------------------------------------------------------------------------------------------------------------
100
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:42:48 -0500
101
+ Processing by HomeController#index as HTML
102
+ Parameters: {"car"=>"Mustang"}
103
+ Rendered home/index.html.erb within layouts/application (1.3ms)
104
+ Completed 200 OK in 186ms (Views: 184.1ms | ActiveRecord: 0.0ms)
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ --------------------------------------------------------------------------------
108
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender
109
+ --------------------------------------------------------------------------------
110
+  (0.1ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ ----------------------------------------------------------------------------------------------------------------
113
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
114
+ ----------------------------------------------------------------------------------------------------------------
115
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:43:50 -0500
116
+ Processing by HomeController#index as HTML
117
+ Parameters: {"car"=>"Mustang"}
118
+ Rendered home/index.html.erb within layouts/application (1.8ms)
119
+ Completed 200 OK in 199ms (Views: 196.8ms | ActiveRecord: 0.0ms)
120
+  (0.1ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+ ---------------------
123
+ HuskyTest: test_truth
124
+ ---------------------
125
+  (0.0ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ --------------------------------------------------------------------------------
128
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender
129
+ --------------------------------------------------------------------------------
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ ---------------------
133
+ HuskyTest: test_truth
134
+ ---------------------
135
+  (0.0ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ ----------------------------------------------------------------------------------------------------------------
138
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
139
+ ----------------------------------------------------------------------------------------------------------------
140
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:45:26 -0500
141
+ Processing by HomeController#index as HTML
142
+ Parameters: {"car"=>"Mustang"}
143
+ Rendered home/index.html.erb within layouts/application (1.5ms)
144
+ Completed 200 OK in 191ms (Views: 189.7ms | ActiveRecord: 0.0ms)
145
+  (0.1ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ --------------------------------------------------------------------------------
148
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender
149
+ --------------------------------------------------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ ----------------------------------------------------------------------------------------------------------------
153
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
154
+ ----------------------------------------------------------------------------------------------------------------
155
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:45:54 -0500
156
+ Processing by HomeController#index as HTML
157
+ Parameters: {"car"=>"Mustang"}
158
+ Rendered home/index.html.erb within layouts/application (1.7ms)
159
+ Completed 200 OK in 190ms (Views: 188.2ms | ActiveRecord: 0.0ms)
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ ---------------------
163
+ HuskyTest: test_truth
164
+ ---------------------
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ --------------------------------------------------------------------------------
168
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender
169
+ --------------------------------------------------------------------------------
170
+  (0.2ms) rollback transaction
171
+  (0.2ms) begin transaction
172
+ --------------------------------------------------------------------------------
173
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender
174
+ --------------------------------------------------------------------------------
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ ----------------------------------------------------------------------------------------------------------------
178
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
179
+ ----------------------------------------------------------------------------------------------------------------
180
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:46:50 -0500
181
+ Processing by HomeController#index as HTML
182
+ Parameters: {"car"=>"Mustang"}
183
+ Rendered home/index.html.erb within layouts/application (1.7ms)
184
+ Completed 200 OK in 188ms (Views: 186.5ms | ActiveRecord: 0.0ms)
185
+  (0.1ms) rollback transaction
186
+  (0.1ms) begin transaction
187
+ ---------------------
188
+ HuskyTest: test_truth
189
+ ---------------------
190
+  (0.0ms) rollback transaction
191
+  (0.2ms) begin transaction
192
+ ----------------------------------------------------------------------------------------------------------------
193
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
194
+ ----------------------------------------------------------------------------------------------------------------
195
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:46:56 -0500
196
+ Processing by HomeController#index as HTML
197
+ Parameters: {"car"=>"Mustang"}
198
+ Rendered home/index.html.erb within layouts/application (1.4ms)
199
+ Completed 200 OK in 184ms (Views: 182.5ms | ActiveRecord: 0.0ms)
200
+  (0.1ms) rollback transaction
201
+  (0.1ms) begin transaction
202
+ ---------------------
203
+ HuskyTest: test_truth
204
+ ---------------------
205
+  (0.0ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+ ---------------------------------------------------------------------------------------------------------
208
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender_after_a_method_is_called
209
+ ---------------------------------------------------------------------------------------------------------
210
+  (0.0ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ ---------------------------------------------------------------------------------------------------------
213
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender_after_a_method_is_called
214
+ ---------------------------------------------------------------------------------------------------------
215
+  (0.1ms) rollback transaction
216
+  (0.0ms) begin transaction
217
+ ---------------------
218
+ HuskyTest: test_truth
219
+ ---------------------
220
+  (0.0ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+ ----------------------------------------------------------------------------------------------------------------
223
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
224
+ ----------------------------------------------------------------------------------------------------------------
225
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:48:08 -0500
226
+ Processing by HomeController#index as HTML
227
+ Parameters: {"car"=>"Mustang"}
228
+ Rendered home/index.html.erb within layouts/application (1.7ms)
229
+ Completed 200 OK in 193ms (Views: 189.6ms | ActiveRecord: 0.0ms)
230
+  (0.1ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ ---------------------
233
+ HuskyTest: test_truth
234
+ ---------------------
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ ----------------------------------------------------------------------------------------------------------------
238
+ ControllerToResponderTest: test_it_can_pass_a_variable_from_the_controller_to_the_responder_through_the_listener
239
+ ----------------------------------------------------------------------------------------------------------------
240
+ Started GET "/?car=Mustang" for 127.0.0.1 at 2016-02-15 08:48:14 -0500
241
+ Processing by HomeController#index as HTML
242
+ Parameters: {"car"=>"Mustang"}
243
+ Rendered home/index.html.erb within layouts/application (2.4ms)
244
+ Completed 200 OK in 195ms (Views: 193.1ms | ActiveRecord: 0.0ms)
245
+  (0.1ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+ ---------------------------------------------------------------------------------------------------------
248
+ PassAlongTest: test_the_receiver_receives_all_instance_variables_from_the_sender_after_a_method_is_called
249
+ ---------------------------------------------------------------------------------------------------------
250
+  (0.1ms) rollback transaction
@@ -0,0 +1 @@
1
+ 52283
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class ControllerToResponderTest < ActionDispatch::IntegrationTest
4
+
5
+ test 'it can pass a variable from the controller to the responder through the listener' do
6
+ get root_path(car: "Mustang")
7
+ assert_includes response.body, "Mustang", "Should include the passed in value in the response."
8
+ end
9
+
10
+ end
@@ -0,0 +1,33 @@
1
+ require 'test_helper'
2
+
3
+ class PassAlongTest < ActiveSupport::TestCase
4
+
5
+ # After a method is called on a Responder, we need to send all instance variables
6
+ # that were created back to the controller for the view
7
+ test 'the receiver receives all instance variables from the sender after a method is called' do
8
+ sam = Sam.new("Sam", "M", "Opportunist")
9
+ bob = Bob.new
10
+ PassAlong.all_variables(sam, bob)
11
+ sam.useless_method
12
+ assert_equal [:@gender, :@job_title, :@name], bob.instance_variables.sort
13
+ end
14
+
15
+
16
+ class Sam
17
+ extend AfterDo
18
+
19
+ def initialize(name, gender, job_title)
20
+ @name = name
21
+ @gender = gender
22
+ @job_title = job_title
23
+ end
24
+
25
+ def useless_method
26
+ end
27
+
28
+ end
29
+
30
+ class Bob
31
+ end
32
+
33
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: husky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Fiser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-14 00:00:00.000000000 Z
11
+ date: 2016-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -68,6 +68,7 @@ files:
68
68
  - lib/husky/broadcaster.rb
69
69
  - lib/husky/ears.rb
70
70
  - lib/husky/interactor.rb
71
+ - lib/husky/pass_along.rb
71
72
  - lib/husky/responder.rb
72
73
  - lib/husky/version.rb
73
74
  - lib/tasks/husky_tasks.rake
@@ -135,8 +136,11 @@ files:
135
136
  - test/dummy/tmp/cache/assets/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache
136
137
  - test/dummy/tmp/cache/assets/sprockets/v3.0/rCJuFBH8Fov8dpwePE7ii_GkEiWZmYCXPNwE7hXfDHk.cache
137
138
  - test/dummy/tmp/cache/assets/sprockets/v3.0/s_EnWD5m6LCrz5h5n5JvgDrju2NSa-v2JM93NSvIf2I.cache
139
+ - test/dummy/tmp/pids/server.pid
138
140
  - test/husky_test.rb
141
+ - test/integration/controller_to_responder_test.rb
139
142
  - test/test_helper.rb
143
+ - test/unit/pass_along_test.rb
140
144
  homepage: http://www.huskyrb.com
141
145
  licenses:
142
146
  - MIT
@@ -226,5 +230,8 @@ test_files:
226
230
  - test/dummy/tmp/cache/assets/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache
227
231
  - test/dummy/tmp/cache/assets/sprockets/v3.0/rCJuFBH8Fov8dpwePE7ii_GkEiWZmYCXPNwE7hXfDHk.cache
228
232
  - test/dummy/tmp/cache/assets/sprockets/v3.0/s_EnWD5m6LCrz5h5n5JvgDrju2NSa-v2JM93NSvIf2I.cache
233
+ - test/dummy/tmp/pids/server.pid
229
234
  - test/husky_test.rb
235
+ - test/integration/controller_to_responder_test.rb
230
236
  - test/test_helper.rb
237
+ - test/unit/pass_along_test.rb