zlib-basecamp-patch 1.1.1

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/zlib.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ # frozen_string_literal: true
3
+
4
+ source_version = ["", "ext/zlib/"].find do |dir|
5
+ begin
6
+ break File.open(File.join(__dir__, "#{dir}zlib.c")) {|f|
7
+ f.gets("\n#define RUBY_ZLIB_VERSION ")
8
+ f.gets[/\s*"(.+)"/, 1]
9
+ }
10
+ rescue Errno::ENOENT
11
+ end
12
+ end
13
+
14
+ Gem::Specification.new do |spec|
15
+ spec.name = "zlib-basecamp-patch"
16
+ spec.version = source_version
17
+ spec.authors = ["Yukihiro Matsumoto", "UENO Katsuhiro"]
18
+ spec.email = ["matz@ruby-lang.org", nil]
19
+
20
+ spec.summary = %q{Ruby interface for the zlib compression/decompression library}
21
+ spec.description = %q{Ruby interface for the zlib compression/decompression library}
22
+ spec.homepage = "https://github.com/ruby/zlib"
23
+ spec.licenses = ["Ruby", "BSD-2-Clause"]
24
+
25
+ spec.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "ext/zlib/extconf.rb", "ext/zlib/zlib.c", "zlib.gemspec"]
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+ spec.extensions = "ext/zlib/extconf.rb"
30
+ spec.required_ruby_version = ">= 2.3.0"
31
+ end
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zlib-basecamp-patch
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Yukihiro Matsumoto
8
+ - UENO Katsuhiro
9
+ autorequire:
10
+ bindir: exe
11
+ cert_chain: []
12
+ date: 2021-03-10 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Ruby interface for the zlib compression/decompression library
15
+ email:
16
+ - matz@ruby-lang.org
17
+ -
18
+ executables: []
19
+ extensions:
20
+ - ext/zlib/extconf.rb
21
+ extra_rdoc_files: []
22
+ files:
23
+ - ".gitignore"
24
+ - Gemfile
25
+ - LICENSE.txt
26
+ - README.md
27
+ - Rakefile
28
+ - bin/console
29
+ - bin/setup
30
+ - ext/zlib/extconf.rb
31
+ - ext/zlib/zlib.c
32
+ - zlib.gemspec
33
+ homepage: https://github.com/ruby/zlib
34
+ licenses:
35
+ - Ruby
36
+ - BSD-2-Clause
37
+ metadata: {}
38
+ post_install_message:
39
+ rdoc_options: []
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 2.3.0
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ requirements: []
53
+ rubygems_version: 3.1.4
54
+ signing_key:
55
+ specification_version: 4
56
+ summary: Ruby interface for the zlib compression/decompression library
57
+ test_files: []