-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfast_xor.gemspec
39 lines (31 loc) · 911 Bytes
/
fast_xor.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
Gem::Specification.new do |s|
s.name = 'fast_xor'
s.version = '1.1.3'
s.date = '2013-12-05'
s.summary = 'Fast String XOR operator'
s.description = 'Provides a C-optimized method for in-place XORing of two (or three) strings'
s.authors = ['Steve Sloan']
s.email = '[email protected]'
s.homepage = 'http://github.com/CodeMonkeySteve/fast_xor'
s.extensions = ['ext/xor/extconf.rb']
s.require_paths = ['lib']
s.files = [
'MIT-LICENSE',
'README.rdoc',
'benchmark',
'lib/.gemkeep',
'ext/xor/xor.c',
'ext/xor/extconf.rb',
]
s.test_files = Dir['spec/**/*_spec.rb']
s.extra_rdoc_files = ['README.rdoc']
s.rdoc_options = ['--charset=UTF-8']
s.platform = Gem::Platform::RUBY
s.rubygems_version = '1.3.7'
s.add_dependency 'rake'
s.add_dependency 'rake-compiler'
s.add_development_dependency 'rspec'
s.rdoc_options = %w[
--exclude .*\.so
]
end