silent_stream 1.0.10 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/REEK ADDED
File without changes
data/RUBOCOP.md ADDED
@@ -0,0 +1,71 @@
1
+ # RuboCop Usage Guide
2
+
3
+ ## Overview
4
+
5
+ A tale of two RuboCop plugin gems.
6
+
7
+ ### RuboCop Gradual
8
+
9
+ This project uses `rubocop_gradual` instead of vanilla RuboCop for code style checking. The `rubocop_gradual` tool allows for gradual adoption of RuboCop rules by tracking violations in a lock file.
10
+
11
+ ### RuboCop LTS
12
+
13
+ This project uses `rubocop-lts` to ensure, on a best-effort basis, compatibility with Ruby >= 1.9.2.
14
+ RuboCop rules are meticulously configured by the `rubocop-lts` family of gems to ensure that a project is compatible with a specific version of Ruby. See: https://rubocop-lts.gitlab.io for more.
15
+
16
+ ## Checking RuboCop Violations
17
+
18
+ To check for RuboCop violations in this project, always use:
19
+
20
+ ```bash
21
+ bundle exec rake rubocop_gradual:check
22
+ ```
23
+
24
+ **Do not use** the standard RuboCop commands like:
25
+ - `bundle exec rubocop`
26
+ - `rubocop`
27
+
28
+ ## Understanding the Lock File
29
+
30
+ The `.rubocop_gradual.lock` file tracks all current RuboCop violations in the project. This allows the team to:
31
+
32
+ 1. Prevent new violations while gradually fixing existing ones
33
+ 2. Track progress on code style improvements
34
+ 3. Ensure CI builds don't fail due to pre-existing violations
35
+
36
+ ## Common Commands
37
+
38
+ - **Check violations**
39
+ - `bundle exec rake rubocop_gradual`
40
+ - `bundle exec rake rubocop_gradual:check`
41
+ - **(Safe) Autocorrect violations, and update lockfile if no new violations**
42
+ - `bundle exec rake rubocop_gradual:autocorrect`
43
+ - **Force update the lock file (w/o autocorrect) to match violations present in code**
44
+ - `bundle exec rake rubocop_gradual:force_update`
45
+
46
+ ## Workflow
47
+
48
+ 1. Before submitting a PR, run `bundle exec rake rubocop_gradual:autocorrect`
49
+ a. or just the default `bundle exec rake`, as autocorrection is a pre-requisite of the default task.
50
+ 2. If there are new violations, either:
51
+ - Fix them in your code
52
+ - Run `bundle exec rake rubocop_gradual:force_update` to update the lock file (only for violations you can't fix immediately)
53
+ 3. Commit the updated `.rubocop_gradual.lock` file along with your changes
54
+
55
+ ## Never add inline RuboCop disables
56
+
57
+ Do not add inline `rubocop:disable` / `rubocop:enable` comments anywhere in the codebase (including specs, except when following the few existing `rubocop:disable` patterns for a rule already being disabled elsewhere in the code). We handle exceptions in two supported ways:
58
+
59
+ - Permanent/structural exceptions: prefer adjusting the RuboCop configuration (e.g., in `.rubocop.yml`) to exclude a rule for a path or file pattern when it makes sense project-wide.
60
+ - Temporary exceptions while improving code: record the current violations in `.rubocop_gradual.lock` via the gradual workflow:
61
+ - `bundle exec rake rubocop_gradual:autocorrect` (preferred; will autocorrect what it can and update the lock only if no new violations were introduced)
62
+ - If needed, `bundle exec rake rubocop_gradual:force_update` (as a last resort when you cannot fix the newly reported violations immediately)
63
+
64
+ In general, treat the rules as guidance to follow; fix violations rather than ignore them. For example, RSpec conventions in this project expect `described_class` to be used in specs that target a specific class under test.
65
+
66
+ ## Benefits of rubocop_gradual
67
+
68
+ - Allows incremental adoption of code style rules
69
+ - Prevents CI failures due to pre-existing violations
70
+ - Provides a clear record of code style debt
71
+ - Enables focused efforts on improving code quality over time
@@ -0,0 +1 @@
1
+ b67962588acdddcb8b1972e35b4b0606bfcc23dd966841b7fec26cd282dc8a47
@@ -0,0 +1 @@
1
+ 062b86979e8ba71e8ad2d5861e62a6624afc00758cfd5752be7cf8209e87fabe1b9d51cc2e35c4be7c8f25a7f46011d485605b4d40c4f1fcfd8d813f5d1ab218
@@ -0,0 +1 @@
1
+ 62f30ff2c1352f675eb2bff9170168d4e2524d71caf3e86be36a1ea741eedcd7
@@ -0,0 +1 @@
1
+ 9a3bd81805f4514e499baf2de8994e3782239f09251304e17fdd5fa822bdc68938ad7a7c00cd92c633ed851e003b720b4230082f17a7095150e9305ac9dab0cb
@@ -0,0 +1 @@
1
+ f3cdf0e2ef000d28ea28cd324a4e74fcf3ec49a0fee6f156b862aedd1ae7d19c
@@ -0,0 +1 @@
1
+ 677edc4416117621d892c13e119be6335b2a29c4efc0c09ce1a71d7ad33792572a7922d5b16f14c409ea6743518621d053eaf182a880aad492be49e6bb77d366
@@ -0,0 +1 @@
1
+ 45e15ce4ba2d8d2ccbc07b165e795be4bff64715565fb102eb8be8a7c4a0b36c
@@ -0,0 +1 @@
1
+ 196f3d50a68953899daeafa4e6ef1da6ecf073a1e4f9dbc56ff2e606b50be717297de84309c81d4d32c66a1a85545e721d662233affc512add1616f0ad6fc2f4
@@ -2,6 +2,6 @@
2
2
 
3
3
  module SilentStream
4
4
  module Version
5
- VERSION = "1.0.10"
5
+ VERSION = "1.0.12"
6
6
  end
7
7
  end
data/lib/silent_stream.rb CHANGED
@@ -21,14 +21,14 @@ module SilentStream
21
21
  end
22
22
 
23
23
  module Enhanced
24
- # param switch is true or false
25
- # By default it is true, when means we don't want logging.
26
- # Switching it to false enables logging again.
27
- # By default, ERROR log level continues to be logged.
28
- # The return value is the return value of the block,
29
- # so you can use it without changing code structure.
24
+ # Silences STDOUT and optionally a Logger while executing the block.
30
25
  #
31
- # This method is not thread-safe.
26
+ # @param switch [Boolean] When false, do not silence. Defaults to true.
27
+ # @param temporary_level [Integer] Logger level to set temporarily (e.g., Logger::ERROR).
28
+ # @param logger [Logger, nil] Logger instance to adjust; defaults to Rails.logger when available.
29
+ # @yield The work to perform while silenced.
30
+ # @return [Object] Returns the block's return value.
31
+ # @note This method is not thread-safe.
32
32
  def silence_all(switch = true, temporary_level = Logger::ERROR, logger = nil, &block)
33
33
  if !switch || silent_stream_no_silence
34
34
  yield
@@ -67,10 +67,14 @@ module SilentStream
67
67
  SILENT_STREAM_NULL_DEVICE = if defined?(IO::NULL)
68
68
  IO::NULL
69
69
  else
70
+ # :nocov:
70
71
  Gem.win_platform? ? "NUL:" : "/dev/null"
72
+ # :nocov:
71
73
  end
72
74
 
73
75
  # This method is not thread-safe.
76
+ # @yield Work to perform while STDERR is silenced.
77
+ # @return [Object] The block's return value.
74
78
  def silence_stderr(&block)
75
79
  silence_stream(STDERR, &block)
76
80
  end
@@ -83,12 +87,15 @@ module SilentStream
83
87
  #
84
88
  # puts 'But this will'
85
89
  #
86
- # This method is not thread-safe.
90
+ # @param stream [IO] The stream to silence (e.g., STDOUT or STDERR).
91
+ # @yield Work to perform while the stream is silenced.
92
+ # @return [Object] The block's return value.
93
+ # @note This method is not thread-safe.
87
94
  def silence_stream(stream)
88
95
  old_stream = stream.dup
89
96
  begin
90
97
  stream.reopen(SILENT_STREAM_NULL_DEVICE, "a+")
91
- rescue Exception => e
98
+ rescue StandardError => e
92
99
  stream.puts "[SilentStream] Unable to silence. #{e.class}: #{e.message}"
93
100
  end
94
101
  stream.sync = true
@@ -114,22 +121,67 @@ module SilentStream
114
121
  # stream = capture(:stderr) { system('echo error 1>&2') }
115
122
  # stream # => "error\n"
116
123
  #
117
- # This method is not thread-safe.
124
+ # @param stream [Symbol, String] :stdout or :stderr (or equivalents), selecting which stream to capture.
125
+ # @yield Work that writes to the selected stream.
126
+ # @return [String] Captured contents of the stream written during the block.
127
+ # @note This method is not thread-safe.
118
128
  def capture(stream)
119
129
  stream = stream.to_s
130
+ io_const = (stream == "stdout") ? STDOUT : STDERR # rubocop:disable Style/GlobalStdStream
120
131
  captured_stream = Tempfile.new(stream)
121
- stream_io = eval("$#{stream}")
122
- origin_stream = stream_io.dup
123
- stream_io.reopen(captured_stream)
132
+ # Save original global var ($stdout/$stderr) and a dup of IO constant for restoration
133
+ origin_gvar = (stream == "stdout") ? $stdout : $stderr
134
+ origin_io_dup = io_const.dup
135
+ begin
136
+ io_const.reopen(captured_stream)
137
+ rescue StandardError => e
138
+ io_const.puts "[SilentStream] Unable to capture. #{e.class}: #{e.message}"
139
+ end
140
+ io_const.sync = true
141
+ if stream == "stdout"
142
+ $stdout = io_const
143
+ else
144
+ $stderr = io_const
145
+ end
124
146
 
125
147
  yield
126
148
 
127
- stream_io.rewind
149
+ begin
150
+ io_const.flush
151
+ rescue StandardError
152
+ # ignore
153
+ end
154
+ captured_stream.rewind
128
155
  captured_stream.read
129
156
  ensure
130
- captured_stream.close
131
- captured_stream.unlink
132
- stream_io.reopen(origin_stream)
157
+ begin
158
+ io_const.reopen(origin_io_dup) if defined?(io_const) && io_const
159
+ origin_io_dup.close if defined?(origin_io_dup) && origin_io_dup
160
+ rescue StandardError
161
+ # ignore
162
+ end
163
+ # Unexpected, and not reasonably testable.
164
+ # :nocov:
165
+ raise "Expected the global variable to exist" unless defined?(origin_gvar)
166
+ # :nocov:
167
+
168
+ if stream == "stdout"
169
+ $stdout = origin_gvar
170
+ else
171
+ $stderr = origin_gvar
172
+ end
173
+ if defined?(captured_stream) && captured_stream
174
+ begin
175
+ captured_stream.close
176
+ rescue
177
+ nil
178
+ end
179
+ begin
180
+ captured_stream.unlink
181
+ rescue
182
+ nil
183
+ end
184
+ end
133
185
  end
134
186
  # silence is provided by the LoggerSilence concern that continues to be
135
187
  # shipped with Rails, so not continuing with this alias.
@@ -139,12 +191,16 @@ module SilentStream
139
191
  #
140
192
  # quietly { system 'bundle install' }
141
193
  #
142
- # This method is not thread-safe.
194
+ # @yield Work to perform while both streams are silenced.
195
+ # @return [Object] The block's return value.
196
+ # @note This method is not thread-safe.
197
+ # rubocop:disable Style/GlobalStdStream
143
198
  def quietly(&block)
144
199
  silence_stream(STDOUT) do
145
200
  silence_stream(STDERR, &block)
146
201
  end
147
202
  end
203
+ # rubocop:enable Style/GlobalStdStream
148
204
 
149
205
  private
150
206
 
@@ -0,0 +1,44 @@
1
+ module SilentStream
2
+ module Enhanced
3
+ # Silence STDOUT (and optionally a Logger) while executing the given block.
4
+ # When switch is false or NO_SILENCE env var is true, the block executes without silencing.
5
+ # Returns the block's return value.
6
+ def silence_all: (*untyped) { () -> untyped } -> untyped
7
+
8
+ private
9
+
10
+ def silent_stream_no_silence: () -> bool
11
+ def silent_stream_logger: () -> (::Logger | nil)
12
+ # Sets logger.level, returns previous level (Integer) or true when previous level was nil
13
+ def silent_stream_reset_logger_level: (::Logger?, Integer) -> (Integer | true | nil)
14
+ end
15
+
16
+ module Extracted
17
+ SILENT_STREAM_NULL_DEVICE: String | IO
18
+
19
+ # Silence STDERR for the duration of the given block.
20
+ def silence_stderr: () { () -> untyped } -> untyped
21
+
22
+ # Silences the given stream for the duration of the block.
23
+ # Returns the block's return value.
24
+ def silence_stream: (IO) { () -> untyped } -> untyped
25
+
26
+ # Capture the given stream (:stdout or :stderr) while running the block and
27
+ # return it as a String.
28
+ def capture: (Symbol | String) { () -> untyped } -> String
29
+
30
+ # Silence both STDOUT and STDERR while running the block.
31
+ # Returns the block's return value.
32
+ def quietly: () { () -> untyped } -> untyped
33
+
34
+ private
35
+
36
+ SILENT_STREAM_WINDOWS_REGEXP: Regexp
37
+ SILENT_STREAM_REGEXP_HAS_MATCH: bool
38
+ def windows_os_test: () -> (bool | Integer)
39
+ end
40
+ end
41
+
42
+ module SilentStream::Version
43
+ end
44
+
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: silent_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Daer
@@ -60,98 +60,124 @@ cert_chain:
60
60
  DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
61
61
  L9nRqA==
62
62
  -----END CERTIFICATE-----
63
- date: 2025-05-05 00:00:00.000000000 Z
63
+ date: 2025-08-21 00:00:00.000000000 Z
64
64
  dependencies:
65
65
  - !ruby/object:Gem::Dependency
66
66
  name: logger
67
67
  requirement: !ruby/object:Gem::Requirement
68
68
  requirements:
69
- - - ">="
69
+ - - "~>"
70
70
  - !ruby/object:Gem::Version
71
- version: 1.4.4
71
+ version: '1.2'
72
72
  type: :runtime
73
73
  prerelease: false
74
74
  version_requirements: !ruby/object:Gem::Requirement
75
75
  requirements:
76
- - - ">="
76
+ - - "~>"
77
77
  - !ruby/object:Gem::Version
78
- version: 1.4.4
78
+ version: '1.2'
79
79
  - !ruby/object:Gem::Dependency
80
80
  name: version_gem
81
81
  requirement: !ruby/object:Gem::Requirement
82
82
  requirements:
83
- - - "~>"
84
- - !ruby/object:Gem::Version
85
- version: '1.1'
86
83
  - - ">="
87
84
  - !ruby/object:Gem::Version
88
- version: 1.1.7
85
+ version: 1.1.8
86
+ - - "<"
87
+ - !ruby/object:Gem::Version
88
+ version: '3'
89
89
  type: :runtime
90
90
  prerelease: false
91
91
  version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 1.1.8
96
+ - - "<"
97
+ - !ruby/object:Gem::Version
98
+ version: '3'
99
+ - !ruby/object:Gem::Dependency
100
+ name: stone_checksums
101
+ requirement: !ruby/object:Gem::Requirement
92
102
  requirements:
93
103
  - - "~>"
94
104
  - !ruby/object:Gem::Version
95
- version: '1.1'
96
- - - ">="
105
+ version: '1.0'
106
+ type: :development
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - "~>"
97
111
  - !ruby/object:Gem::Version
98
- version: 1.1.7
112
+ version: '1.0'
99
113
  - !ruby/object:Gem::Dependency
100
- name: minitest
114
+ name: appraisal2
101
115
  requirement: !ruby/object:Gem::Requirement
102
116
  requirements:
103
- - - ">="
117
+ - - "~>"
104
118
  - !ruby/object:Gem::Version
105
- version: '5.15'
119
+ version: '3.0'
106
120
  type: :development
107
121
  prerelease: false
108
122
  version_requirements: !ruby/object:Gem::Requirement
109
123
  requirements:
110
- - - ">="
124
+ - - "~>"
111
125
  - !ruby/object:Gem::Version
112
- version: '5.15'
126
+ version: '3.0'
113
127
  - !ruby/object:Gem::Dependency
114
- name: minitest-reporters
128
+ name: minitest
115
129
  requirement: !ruby/object:Gem::Requirement
116
130
  requirements:
117
131
  - - ">="
118
132
  - !ruby/object:Gem::Version
119
- version: '0'
133
+ version: '5.15'
120
134
  type: :development
121
135
  prerelease: false
122
136
  version_requirements: !ruby/object:Gem::Requirement
123
137
  requirements:
124
138
  - - ">="
125
139
  - !ruby/object:Gem::Version
126
- version: '0'
140
+ version: '5.15'
127
141
  - !ruby/object:Gem::Dependency
128
- name: mocha
142
+ name: minitest-reporters
129
143
  requirement: !ruby/object:Gem::Requirement
130
144
  requirements:
145
+ - - "~>"
146
+ - !ruby/object:Gem::Version
147
+ version: '1.7'
131
148
  - - ">="
132
149
  - !ruby/object:Gem::Version
133
- version: '0'
150
+ version: 1.7.1
134
151
  type: :development
135
152
  prerelease: false
136
153
  version_requirements: !ruby/object:Gem::Requirement
137
154
  requirements:
155
+ - - "~>"
156
+ - !ruby/object:Gem::Version
157
+ version: '1.7'
138
158
  - - ">="
139
159
  - !ruby/object:Gem::Version
140
- version: '0'
160
+ version: 1.7.1
141
161
  - !ruby/object:Gem::Dependency
142
- name: rake
162
+ name: mocha
143
163
  requirement: !ruby/object:Gem::Requirement
144
164
  requirements:
145
165
  - - "~>"
146
166
  - !ruby/object:Gem::Version
147
- version: '13.0'
167
+ version: '2.7'
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: 2.7.1
148
171
  type: :development
149
172
  prerelease: false
150
173
  version_requirements: !ruby/object:Gem::Requirement
151
174
  requirements:
152
175
  - - "~>"
153
176
  - !ruby/object:Gem::Version
154
- version: '13.0'
177
+ version: '2.7'
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: 2.7.1
155
181
  - !ruby/object:Gem::Dependency
156
182
  name: ruby_engine
157
183
  requirement: !ruby/object:Gem::Requirement
@@ -159,6 +185,9 @@ dependencies:
159
185
  - - "~>"
160
186
  - !ruby/object:Gem::Version
161
187
  version: '2.0'
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: 2.0.3
162
191
  type: :development
163
192
  prerelease: false
164
193
  version_requirements: !ruby/object:Gem::Requirement
@@ -166,6 +195,9 @@ dependencies:
166
195
  - - "~>"
167
196
  - !ruby/object:Gem::Version
168
197
  version: '2.0'
198
+ - - ">="
199
+ - !ruby/object:Gem::Version
200
+ version: 2.0.3
169
201
  - !ruby/object:Gem::Dependency
170
202
  name: ruby_version
171
203
  requirement: !ruby/object:Gem::Requirement
@@ -173,6 +205,9 @@ dependencies:
173
205
  - - "~>"
174
206
  - !ruby/object:Gem::Version
175
207
  version: '1.0'
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: 1.0.3
176
211
  type: :development
177
212
  prerelease: false
178
213
  version_requirements: !ruby/object:Gem::Requirement
@@ -180,13 +215,47 @@ dependencies:
180
215
  - - "~>"
181
216
  - !ruby/object:Gem::Version
182
217
  version: '1.0'
218
+ - - ">="
219
+ - !ruby/object:Gem::Version
220
+ version: 1.0.3
183
221
  - !ruby/object:Gem::Dependency
184
- name: stone_checksums
222
+ name: test-unit
223
+ requirement: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - ">="
226
+ - !ruby/object:Gem::Version
227
+ version: '3.7'
228
+ type: :development
229
+ prerelease: false
230
+ version_requirements: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: '3.7'
235
+ - !ruby/object:Gem::Dependency
236
+ name: erb
237
+ requirement: !ruby/object:Gem::Requirement
238
+ requirements:
239
+ - - ">="
240
+ - !ruby/object:Gem::Version
241
+ version: '2.2'
242
+ type: :development
243
+ prerelease: false
244
+ version_requirements: !ruby/object:Gem::Requirement
245
+ requirements:
246
+ - - ">="
247
+ - !ruby/object:Gem::Version
248
+ version: '2.2'
249
+ - !ruby/object:Gem::Dependency
250
+ name: gitmoji-regex
185
251
  requirement: !ruby/object:Gem::Requirement
186
252
  requirements:
187
253
  - - "~>"
188
254
  - !ruby/object:Gem::Version
189
255
  version: '1.0'
256
+ - - ">="
257
+ - !ruby/object:Gem::Version
258
+ version: 1.0.3
190
259
  type: :development
191
260
  prerelease: false
192
261
  version_requirements: !ruby/object:Gem::Requirement
@@ -194,59 +263,101 @@ dependencies:
194
263
  - - "~>"
195
264
  - !ruby/object:Gem::Version
196
265
  version: '1.0'
266
+ - - ">="
267
+ - !ruby/object:Gem::Version
268
+ version: 1.0.3
197
269
  - !ruby/object:Gem::Dependency
198
- name: test-unit
270
+ name: rake
199
271
  requirement: !ruby/object:Gem::Requirement
200
272
  requirements:
201
- - - ">="
273
+ - - "~>"
202
274
  - !ruby/object:Gem::Version
203
- version: '3.2'
275
+ version: '13.0'
204
276
  type: :development
205
277
  prerelease: false
206
278
  version_requirements: !ruby/object:Gem::Requirement
207
279
  requirements:
208
- - - ">="
280
+ - - "~>"
209
281
  - !ruby/object:Gem::Version
210
- version: '3.2'
211
- description: ActiveSupport Kernel Reporting Detritus with a few enhancements
282
+ version: '13.0'
283
+ description: "\U0001F515 (formerly) ActiveSupport Kernel Reporting Detritus with a
284
+ few enhancementsFund overlooked open source projects - bottom of stack, dev/test
285
+ dependencies: floss-funding.dev"
212
286
  email:
213
- - peter.boling@gmail.com
287
+ - floss@galtzo.com
214
288
  executables: []
215
289
  extensions: []
216
290
  extra_rdoc_files:
217
291
  - CHANGELOG.md
292
+ - CITATION.cff
218
293
  - CODE_OF_CONDUCT.md
219
294
  - CONTRIBUTING.md
220
295
  - LICENSE.txt
221
296
  - README.md
297
+ - REEK
298
+ - RUBOCOP.md
222
299
  - SECURITY.md
300
+ - checksums/silent_stream-1.0.10.gem.sha256
301
+ - checksums/silent_stream-1.0.10.gem.sha512
302
+ - checksums/silent_stream-1.0.11.gem.sha256
303
+ - checksums/silent_stream-1.0.11.gem.sha512
304
+ - checksums/silent_stream-1.0.12.gem.sha256
305
+ - checksums/silent_stream-1.0.12.gem.sha512
306
+ - checksums/silent_stream-1.0.9.gem.sha256
307
+ - checksums/silent_stream-1.0.9.gem.sha512
308
+ - sig/silent_stream.rbs
223
309
  files:
224
310
  - CHANGELOG.md
311
+ - CITATION.cff
225
312
  - CODE_OF_CONDUCT.md
226
313
  - CONTRIBUTING.md
227
314
  - LICENSE.txt
228
315
  - README.md
316
+ - REEK
317
+ - RUBOCOP.md
229
318
  - SECURITY.md
319
+ - checksums/silent_stream-1.0.10.gem.sha256
320
+ - checksums/silent_stream-1.0.10.gem.sha512
321
+ - checksums/silent_stream-1.0.11.gem.sha256
322
+ - checksums/silent_stream-1.0.11.gem.sha512
323
+ - checksums/silent_stream-1.0.12.gem.sha256
324
+ - checksums/silent_stream-1.0.12.gem.sha512
325
+ - checksums/silent_stream-1.0.9.gem.sha256
326
+ - checksums/silent_stream-1.0.9.gem.sha512
230
327
  - lib/silent_stream.rb
231
328
  - lib/silent_stream/version.rb
232
- homepage: https://github.com/pboling/silent_stream
329
+ - sig/silent_stream.rbs
330
+ homepage: https://github.com/galtzo-floss/silent_stream
233
331
  licenses:
234
332
  - MIT
235
333
  metadata:
236
- homepage_uri: https://github.com/pboling/silent_stream
237
- source_code_uri: https://github.com/pboling/silent_stream/tree/v1.0.10
238
- changelog_uri: https://github.com/pboling/silent_stream/blob/v1.0.10/CHANGELOG.md
239
- bug_tracker_uri: https://github.com/pboling/silent_stream/issues
240
- documentation_uri: https://www.rubydoc.info/gems/silent_stream/1.0.10
241
- wiki_uri: https://github.com/pboling/silent_stream/wiki
242
- funding_uri: https://liberapay.com/pboling
334
+ homepage_uri: https://silent-stream.galtzo.com/
335
+ source_code_uri: https://github.com/galtzo-floss/silent_stream/tree/v1.0.12
336
+ changelog_uri: https://github.com/galtzo-floss/silent_stream/blob/v1.0.12/CHANGELOG.md
337
+ bug_tracker_uri: https://github.com/galtzo-floss/silent_stream/issues
338
+ documentation_uri: https://www.rubydoc.info/gems/silent_stream/1.0.12
339
+ funding_uri: https://github.com/sponsors/pboling
340
+ wiki_uri: https://github.com/galtzo-floss/silent_stream/wiki
243
341
  news_uri: https://www.railsbling.com/tags/silent_stream
342
+ discord_uri: https://discord.gg/3qme4XHNKN
244
343
  rubygems_mfa_required: 'true'
245
344
  rdoc_options:
246
345
  - "--title"
247
- - silent_stream - ActiveSupport's Stream Silencing - Without ActiveSupport
346
+ - "silent_stream - \U0001F515 (formerly) ActiveSupport's Stream Silencing - Without
347
+ ActiveSupport"
248
348
  - "--main"
349
+ - checksums/**/*.sha256
350
+ - checksums/**/*.sha512
351
+ - sig/**/*.rbs
352
+ - CHANGELOG.md
353
+ - CITATION.cff
354
+ - CODE_OF_CONDUCT.md
355
+ - CONTRIBUTING.md
356
+ - LICENSE.txt
249
357
  - README.md
358
+ - REEK
359
+ - RUBOCOP.md
360
+ - SECURITY.md
250
361
  - "--line-numbers"
251
362
  - "--inline-source"
252
363
  - "--quiet"
@@ -263,7 +374,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
263
374
  - !ruby/object:Gem::Version
264
375
  version: '0'
265
376
  requirements: []
266
- rubygems_version: 3.6.8
377
+ rubygems_version: 3.7.1
267
378
  specification_version: 4
268
- summary: ActiveSupport's Stream Silencing - Without ActiveSupport
379
+ summary: "\U0001F515 (formerly) ActiveSupport's Stream Silencing - Without ActiveSupport"
269
380
  test_files: []
metadata.gz.sig CHANGED
Binary file