-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbitarray.gemspec
More file actions
55 lines (51 loc) · 1.67 KB
/
bitarray.gemspec
File metadata and controls
55 lines (51 loc) · 1.67 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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{bitarray}
s.version = "0.5.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["James E. Ingram"]
s.date = %q{2009-06-02}
s.description = %q{A bit array class for Ruby, implemented as a C extension. Includes methods for setting and clearing individual bits, and all bits at once. Also has the standard array access methods, [] and []=, and it mixes in Enumerable.}
s.email = %q{ingramj@gmail.com}
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = [
"LICENSE",
"README"
]
s.files = [
".gitignore",
"LICENSE",
"README",
"Rakefile",
"TODO",
"VERSION",
"bitarray.gemspec",
"examples/bloomfilter.rb",
"examples/boolnet.rb",
"ext/bitarray.c",
"ext/extconf.rb",
"test/bm.rb",
"test/test.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/ingramj/bitarray}
s.rdoc_options = ["--charset=UTF-8", "--exclude=ext/Makefile", "--exclude=ext/extconf.rb", "--title", "BitArray Documentation"]
s.require_paths = ["ext"]
s.required_ruby_version = Gem::Requirement.new(">= 1.8.6")
s.rubygems_version = %q{1.3.1}
s.summary = %q{A bitarray class for Ruby, implemented as a C extension.}
s.test_files = [
"test/test.rb",
"test/bm.rb",
"examples/bloomfilter.rb",
"examples/boolnet.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end