-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhwia.gemspec
More file actions
25 lines (25 loc) · 772 Bytes
/
hwia.gemspec
File metadata and controls
25 lines (25 loc) · 772 Bytes
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
Gem::Specification.new do |s|
s.name = "hwia"
s.version = "1.0.2"
s.date = "2009-08-23"
s.summary = "A faster HashWithIndifferentAccess (hwia) for MRI"
s.email = "[email protected]"
s.homepage = "http://github.com/methodmissing/hwia"
s.description = "A faster HashWithIndifferentAccess (hwia) for MRI (1.8.{6,7} and 1.9.2)"
s.has_rdoc = true
s.authors = ["Lourens Naudé (methodmissing)"]
s.platform = Gem::Platform::RUBY
s.files = %w[
README
Rakefile
bench/bench.rb
bench/as_hwia.rb
ext/hwia/extconf.rb
ext/hwia/hwia.c
lib/hwia_rails.rb
hwia.gemspec
] + Dir.glob('test/*')
s.rdoc_options = ["--main", "README"]
s.extra_rdoc_files = ["README"]
s.extensions << "ext/hwia/extconf.rb"
end