forked from ianlevesque/ruby-lzma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-lzma.gemspec
More file actions
135 lines (130 loc) · 3.64 KB
/
ruby-lzma.gemspec
File metadata and controls
135 lines (130 loc) · 3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{ruby-lzma}
s.version = "0.4.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ian Levesque"]
s.date = %q{2010-06-07}
s.email = %q{ian@ianlevesque.org}
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = [
"README.markdown"
]
s.files = [
".gitignore",
"README.markdown",
"Rakefile",
"VERSION",
"ext/Alloc.cpp",
"ext/Alloc.h",
"ext/BinTree.h",
"ext/BinTree2.h",
"ext/BinTree3.h",
"ext/BinTree3Z.h",
"ext/BinTree4.h",
"ext/BinTree4b.h",
"ext/BinTreeMain.h",
"ext/BranchX86.c",
"ext/BranchX86.h",
"ext/CRC.cpp",
"ext/CRC.h",
"ext/C_FileIO.h",
"ext/CommandLineParser.h",
"ext/Defs.h",
"ext/FileStreams.h",
"ext/HC.h",
"ext/HC2.h",
"ext/HC3.h",
"ext/HC4.h",
"ext/HC4b.h",
"ext/HCMain.h",
"ext/ICoder.h",
"ext/IMatchFinder.h",
"ext/IStream.h",
"ext/InBuffer.cpp",
"ext/InBuffer.h",
"ext/LZInWindow.cpp",
"ext/LZInWindow.h",
"ext/LZMA.h",
"ext/LZMADecoder.h",
"ext/LZMAEncoder.cpp",
"ext/LZMAEncoder.h",
"ext/LZOutWindow.cpp",
"ext/LZOutWindow.h",
"ext/LzmaBench.h",
"ext/LzmaDecode.c",
"ext/LzmaDecode.h",
"ext/LzmaRam.cpp",
"ext/LzmaRam.h",
"ext/LzmaRamDecode.c",
"ext/LzmaRamDecode.h",
"ext/MyCom.h",
"ext/MyGuidDef.h",
"ext/MyInitGuid.h",
"ext/MyString.h",
"ext/MyUnknown.h",
"ext/MyWindows.h",
"ext/OutBuffer.cpp",
"ext/OutBuffer.h",
"ext/Pat.h",
"ext/Pat2.h",
"ext/Pat2H.h",
"ext/Pat2R.h",
"ext/Pat3H.h",
"ext/Pat4H.h",
"ext/PatMain.h",
"ext/RangeCoder.h",
"ext/RangeCoderBit.cpp",
"ext/RangeCoderBit.h",
"ext/RangeCoderBitTree.h",
"ext/RangeCoderOpt.h",
"ext/StdAfx.h",
"ext/StreamUtils.cpp",
"ext/StreamUtils.h",
"ext/StringConvert.h",
"ext/StringToInt.h",
"ext/Types.h",
"ext/Vector.h",
"ext/extconf.rb",
"ext/lzma_ruby.cpp",
"ext/lzmalib.h",
"ext/mylib.cpp",
"java/SevenZip/CRC.java",
"java/SevenZip/Compression/LZ/BinTree.java",
"java/SevenZip/Compression/LZ/InWindow.java",
"java/SevenZip/Compression/LZ/OutWindow.java",
"java/SevenZip/Compression/LZMA/Base.java",
"java/SevenZip/Compression/LZMA/Decoder.java",
"java/SevenZip/Compression/LZMA/Encoder.java",
"java/SevenZip/Compression/RangeCoder/BitTreeDecoder.java",
"java/SevenZip/Compression/RangeCoder/BitTreeEncoder.java",
"java/SevenZip/Compression/RangeCoder/Decoder.java",
"java/SevenZip/Compression/RangeCoder/Encoder.java",
"java/SevenZip/ICodeProgress.java",
"java/SevenZip/LzmaAlone.java",
"java/SevenZip/LzmaBench.java",
"java/com/ephemeronindustries/lzma/LZMA.java",
"lib/lzma.rb",
"ruby-lzma.gemspec",
"test/test_lzma.rb"
]
s.homepage = %q{http://github.com/ianlevesque/ruby-lzma}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Simple ruby and jruby wrappers for LZMA compression and decompression.}
s.test_files = [
"test/test_lzma.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end