-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbit-twiddle.gemspec
23 lines (20 loc) · 1022 Bytes
/
bit-twiddle.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'bit-twiddle'
s.version = '0.1.2'
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'Fast bitwise operations for Ruby'
s.description = 'Fast (native) bitwise operations for Ruby, in addition to the ones provided by the standard library'
s.authors = ['Alex Dowad']
s.email = '[email protected]'
s.extensions = ['ext/bit_twiddle/extconf.rb']
s.homepage = 'http://github.com/alexdowad/bit-twiddle'
s.license = 'None (Public Domain)'
gitignored = Dir[*File.readlines(File.join(__dir__, '.gitignore')).map { |l| "**/#{l.chomp}" }]
s.files = Dir["lib/**/*", "ext/**/*", "LICENSE", "*.md"] - gitignored
s.required_ruby_version = ">= 2.2.8"
s.add_development_dependency "rspec", "~> 3.7"
s.add_development_dependency "rake", "~> 12.2"
s.add_development_dependency "rake-compiler", "~> 0.9"
s.add_development_dependency "benchmark-ips", "~> 2.7"
s.add_development_dependency "yard", "~> 0.9"
end