zip_kit 6.0.0 → 6.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/zip_kit.gemspec CHANGED
@@ -7,12 +7,13 @@ Gem::Specification.new do |spec|
7
7
  spec.version = ZipKit::VERSION
8
8
  spec.authors = ["Julik Tarkhanov", "Noah Berman", "Dmitry Tymchuk", "David Bosveld", "Felix Bünemann"]
9
9
  spec.email = ["me@julik.nl"]
10
- spec.required_ruby_version = ">= 2.6.0"
11
10
 
12
- spec.summary = "Stream out ZIP files from Ruby"
13
- spec.description = "Stream out ZIP files from Ruby"
11
+ spec.summary = "Stream out ZIP files from Ruby. Successor to zip_tricks."
12
+ spec.description = "Stream out ZIP files from Ruby. Successor to zip_tricks."
14
13
  spec.homepage = "https://github.com/julik/zip_kit"
15
14
 
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+
16
17
  spec.metadata["allowed_push_host"] = "https://rubygems.org"
17
18
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
19
  f.match(%r{^(test|spec|features|gemfiles)/})
@@ -38,4 +39,5 @@ Gem::Specification.new do |spec|
38
39
  spec.add_development_dependency "puma"
39
40
  spec.add_development_dependency "actionpack", "~> 5" # For testing RailsStreaming against an actual Rails controller
40
41
  spec.add_development_dependency "nokogiri", "~> 1", ">= 1.13" # Rails 5 does by mistake use an older Nokogiri otherwise
42
+ spec.add_development_dependency "sord"
41
43
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zip_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julik Tarkhanov
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: exe
14
14
  cert_chain: []
15
- date: 2024-03-01 00:00:00.000000000 Z
15
+ date: 2024-03-11 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: bundler
@@ -250,14 +250,27 @@ dependencies:
250
250
  - - ">="
251
251
  - !ruby/object:Gem::Version
252
252
  version: '1.13'
253
- description: Stream out ZIP files from Ruby
253
+ - !ruby/object:Gem::Dependency
254
+ name: sord
255
+ requirement: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - ">="
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ type: :development
261
+ prerelease: false
262
+ version_requirements: !ruby/object:Gem::Requirement
263
+ requirements:
264
+ - - ">="
265
+ - !ruby/object:Gem::Version
266
+ version: '0'
267
+ description: Stream out ZIP files from Ruby. Successor to zip_tricks.
254
268
  email:
255
269
  - me@julik.nl
256
270
  executables: []
257
271
  extensions: []
258
272
  extra_rdoc_files: []
259
273
  files:
260
- - ".codeclimate.yml"
261
274
  - ".document"
262
275
  - ".github/workflows/ci.yml"
263
276
  - ".gitignore"
@@ -308,6 +321,7 @@ files:
308
321
  - lib/zip_kit/write_buffer.rb
309
322
  - lib/zip_kit/write_shovel.rb
310
323
  - lib/zip_kit/zip_writer.rb
324
+ - rbi/zip_kit.rbi
311
325
  - zip_kit.gemspec
312
326
  homepage: https://github.com/julik/zip_kit
313
327
  licenses: []
@@ -328,8 +342,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
328
342
  - !ruby/object:Gem::Version
329
343
  version: '0'
330
344
  requirements: []
331
- rubygems_version: 3.0.3
345
+ rubygems_version: 3.3.7
332
346
  signing_key:
333
347
  specification_version: 4
334
- summary: Stream out ZIP files from Ruby
348
+ summary: Stream out ZIP files from Ruby. Successor to zip_tricks.
335
349
  test_files: []
data/.codeclimate.yml DELETED
@@ -1,7 +0,0 @@
1
- engines:
2
- rubocop:
3
- enabled: true
4
-
5
- ratings:
6
- paths:
7
- - "**.rb"