-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitstring.gemspec
72 lines (66 loc) · 2.1 KB
/
bitstring.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
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
require 'lib/bitstring'
# rdoc_options=[]
# specification_version=3
# new_platform="ruby"
# loaded=false
# autorequire=nil
# email=nil
# required_ruby_version=#<Gem::Requirement:0xb73fcf48 @requirements=[[">=", #<Gem::Version "0">]], @version=nil>
# loaded_from=nil
# extensions=[]
# has_rdoc=true
# rubygems_version="1.3.5"
# post_install_message=nil
# name=nil
# files=[]
# require_paths=["lib"]
# rubyforge_project=nil
# test_files=[]
# summary=nil
# extra_rdoc_files=[]
# cert_chain=[]
# homepage=nil
# dependencies=[]
# platform="ruby"
# licenses=[]
# date=Tue Dec 29 00:00:00 -0500 2009
# original_platform=nil
# requirements=[]
# executables=[]
# authors=[]
# signing_key=nil
# default_executable=nil
# version=nil
# required_rubygems_version=#<Gem::Requirement:0xb73fcf0c @requirements=[[">=", #<Gem::Version "0">]], @version=nil>
# bindir="bin"
# description=nil
Gem::Specification.new do |s|
s.name = 'bitstring'
s.version = BitString::VERSION
s.authors = 'Rodent of Unusual Size'
s.email = '[email protected]'
s.date = Time.now.strftime('%Y-%m-%d')
s.description = %q{This package provides the BitString class. Bit strings are something like Arrays constrained to only contain values of 0 and 1, and something like Integers. They can consist of a specific number of bits, or be arbitrarily expandable.}
s.summary = %q{An extensible Ruby class for handling sequences of bits.}
s.email = %q{[email protected]}
# s.extra_rdoc_files = ["README.rdoc", "CONTRIBUTORS.rdoc"]
# s.executables = ["file1", "file2"]
# s.default_executable = %q{file1}
s.add_dependency('versionomy', '>= 0.3.0')
s.homepage = %q{http://bitstring.rubyforge.org/}
s.rubyforge_project = 'bitstring'
s.rubygems_version = %q{1.3.4}
s.files = [
'CONTRIBUTORS.txt',
'LICENCE.txt',
'NOTICE.txt',
'README.txt',
'Changelog.txt',
'lib/bitstring.rb',
'lib/bitstring/operators.rb',
] +
Dir['test/Rakefile'] +
Dir['test/test_*.rb'] +
Dir['doc/**/*']
s.test_files = Dir['test/test_*.rb']
end