forked from tyler/bitset
-
Notifications
You must be signed in to change notification settings - Fork 7
/
bitset.gemspec
41 lines (38 loc) · 1.25 KB
/
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
31
32
33
34
35
36
37
38
39
40
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: bitset 1.2.0 ruby lib
# stub: ext/bitset/extconf.rb
Gem::Specification.new do |s|
s.name = "bitset".freeze
s.version = "1.2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Tyler McMullen".freeze]
s.date = "2018-05-01"
s.description = "A fast C-based Bitset. It supports the standard set operations as well as operations you may expect on bit arrays,such as popcount.".freeze
s.email = "[email protected]".freeze
s.extensions = ["ext/bitset/extconf.rb".freeze]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.markdown"
]
s.files = [
"LICENSE.txt",
"README.markdown",
"Rakefile",
"VERSION",
"bitset.gemspec",
"ext/bitset/bitset.c",
"ext/bitset/builtin.h",
"ext/bitset/exact-int.h",
"ext/bitset/extconf.rb",
"lib/bitset.rb",
"spec/bitset_spec.rb"
]
s.homepage = "http://github.com/ericboesch/bitset".freeze
s.licenses = ["MIT".freeze]
s.rubygems_version = "2.6.14".freeze
s.summary = "Bitset implementation.".freeze
end