-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathewah-bitset.gemspec
30 lines (26 loc) · 1.32 KB
/
ewah-bitset.gemspec
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ewah-bitset"
s.version = "0.0.3"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Josh Ferguson"]
s.date = "2012-05-03"
s.description = "A wrapper around Lemire's EWAHBoolArray from https://github.com/lemire/EWAHBoolArray"
s.email = "[email protected]"
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.md", "ext/boolarray.h", "ext/ewah-bitset.cpp", "ext/ewah.h", "ext/extconf.rb"]
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.md", "Rakefile", "ewah-bitset.gemspec", "ext/boolarray.h", "ext/ewah-bitset.cpp", "ext/ewah.h", "ext/extconf.rb", "spec/ewah_bitset_spec.rb", "spec/spec.opts"]
s.homepage = "http://www.github.com/yammer/ewah-bitset/"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ewah-bitset", "--main", "README.md"]
s.require_paths = ["lib", "ext"]
s.rubyforge_project = "ewah-bitset"
s.rubygems_version = "1.8.15"
s.summary = "A wrapper around Lemire's EWAHBoolArray from https://github.com/lemire/EWAHBoolArray"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end