zlib-crc32_combine 1.0.1 → 1.0.2
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/Rakefile +1 -1
- data/VERSION +1 -1
- data/zlib-crc32_combine.gemspec +22 -29
- metadata +34 -43
- data/.gitignore +0 -21
data/Rakefile
CHANGED
@@ -10,7 +10,7 @@ begin
|
|
10
10
|
gem.email = "andrew@andrewloe.com"
|
11
11
|
gem.homepage = "http://github.com/loe/zlib-crc32_combine"
|
12
12
|
gem.authors = ["W. Andrew Loe III", "Aaron Patterson"]
|
13
|
-
gem.add_dependency "ffi"
|
13
|
+
gem.add_dependency "ffi"
|
14
14
|
end
|
15
15
|
Jeweler::GemcutterTasks.new
|
16
16
|
rescue LoadError
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.2
|
data/zlib-crc32_combine.gemspec
CHANGED
@@ -1,54 +1,47 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "1.0.
|
7
|
+
s.name = "zlib-crc32_combine"
|
8
|
+
s.version = "1.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["W. Andrew Loe III", "Aaron Patterson"]
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
12
|
+
s.date = "2011-09-19"
|
13
|
+
s.description = "Add Zlib's crc32_combine and adler32_combine to Ruby's Zlib"
|
14
|
+
s.email = "andrew@andrewloe.com"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
17
|
+
"README.rdoc"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
"lib/zlib-crc32_combine.rb",
|
27
|
-
"test/helper.rb",
|
28
|
-
"test/test_zlib-crc32_combine.rb",
|
29
|
-
"zlib-crc32_combine.gemspec"
|
30
|
-
]
|
31
|
-
s.homepage = %q{http://github.com/loe/zlib-crc32_combine}
|
32
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
33
|
-
s.require_paths = ["lib"]
|
34
|
-
s.rubygems_version = %q{1.3.5}
|
35
|
-
s.summary = %q{Add Zlib's crc32_combine and adler32_combine to Ruby's Zlib}
|
36
|
-
s.test_files = [
|
21
|
+
"LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"lib/zlib-crc32_combine.rb",
|
37
26
|
"test/helper.rb",
|
38
|
-
|
27
|
+
"test/test_zlib-crc32_combine.rb",
|
28
|
+
"zlib-crc32_combine.gemspec"
|
39
29
|
]
|
30
|
+
s.homepage = "http://github.com/loe/zlib-crc32_combine"
|
31
|
+
s.require_paths = ["lib"]
|
32
|
+
s.rubygems_version = "1.8.10"
|
33
|
+
s.summary = "Add Zlib's crc32_combine and adler32_combine to Ruby's Zlib"
|
40
34
|
|
41
35
|
if s.respond_to? :specification_version then
|
42
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
43
36
|
s.specification_version = 3
|
44
37
|
|
45
|
-
if Gem::Version.new(Gem::
|
46
|
-
s.add_runtime_dependency(%q<ffi>, ["
|
38
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
39
|
+
s.add_runtime_dependency(%q<ffi>, [">= 0"])
|
47
40
|
else
|
48
|
-
s.add_dependency(%q<ffi>, ["
|
41
|
+
s.add_dependency(%q<ffi>, [">= 0"])
|
49
42
|
end
|
50
43
|
else
|
51
|
-
s.add_dependency(%q<ffi>, ["
|
44
|
+
s.add_dependency(%q<ffi>, [">= 0"])
|
52
45
|
end
|
53
46
|
end
|
54
47
|
|
metadata
CHANGED
@@ -1,40 +1,37 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: zlib-crc32_combine
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.2
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
|
-
authors:
|
7
|
+
authors:
|
7
8
|
- W. Andrew Loe III
|
8
9
|
- Aaron Patterson
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
dependencies:
|
16
|
-
- !ruby/object:Gem::Dependency
|
13
|
+
date: 2011-09-19 00:00:00.000000000Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
17
16
|
name: ffi
|
17
|
+
requirement: &2152987720 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
18
23
|
type: :runtime
|
19
|
-
|
20
|
-
version_requirements:
|
21
|
-
requirements:
|
22
|
-
- - ~>
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version: 0.6.2
|
25
|
-
version:
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *2152987720
|
26
26
|
description: Add Zlib's crc32_combine and adler32_combine to Ruby's Zlib
|
27
27
|
email: andrew@andrewloe.com
|
28
28
|
executables: []
|
29
|
-
|
30
29
|
extensions: []
|
31
|
-
|
32
|
-
extra_rdoc_files:
|
30
|
+
extra_rdoc_files:
|
33
31
|
- LICENSE
|
34
32
|
- README.rdoc
|
35
|
-
files:
|
33
|
+
files:
|
36
34
|
- .document
|
37
|
-
- .gitignore
|
38
35
|
- LICENSE
|
39
36
|
- README.rdoc
|
40
37
|
- Rakefile
|
@@ -43,34 +40,28 @@ files:
|
|
43
40
|
- test/helper.rb
|
44
41
|
- test/test_zlib-crc32_combine.rb
|
45
42
|
- zlib-crc32_combine.gemspec
|
46
|
-
has_rdoc: true
|
47
43
|
homepage: http://github.com/loe/zlib-crc32_combine
|
48
44
|
licenses: []
|
49
|
-
|
50
45
|
post_install_message:
|
51
|
-
rdoc_options:
|
52
|
-
|
53
|
-
require_paths:
|
46
|
+
rdoc_options: []
|
47
|
+
require_paths:
|
54
48
|
- lib
|
55
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ! '>='
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
67
61
|
requirements: []
|
68
|
-
|
69
62
|
rubyforge_project:
|
70
|
-
rubygems_version: 1.
|
63
|
+
rubygems_version: 1.8.10
|
71
64
|
signing_key:
|
72
65
|
specification_version: 3
|
73
66
|
summary: Add Zlib's crc32_combine and adler32_combine to Ruby's Zlib
|
74
|
-
test_files:
|
75
|
-
- test/helper.rb
|
76
|
-
- test/test_zlib-crc32_combine.rb
|
67
|
+
test_files: []
|