forked from hallettj/zaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzaml.gemspec
37 lines (34 loc) · 1.3 KB
/
zaml.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
Gem::Specification.new do |s|
s.name = "zaml"
s.version = "0.1.3" # Please make sure this matches ZAML::VERSION
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = "A partial replacement for YAML, writen with speed and code clarity in mind."
s.authors = ["Markus Roberts", "Jesse Hallett", "Ian McIntosh", "Igal Koshevoy", "Simon Chiang"]
s.email = "zaml@googlegroups.com"
s.homepage = "http://github.com/hallettj/zaml"
s.description = "A partial replacement for YAML, writen with speed and code clarity in mind. ZAML fixes one YAML bug (loading Exceptions) and provides a replacement for YAML.dump() unimaginatively called ZAML.dump(), which is faster on all known cases and an order of magnitude faster with complex structures."
s.platform = Gem::Platform::RUBY
s.require_path = "lib"
s.has_rdoc = true
s.rdoc_options = ["--main", "README"]
# list extra rdoc files here.
s.extra_rdoc_files = %W{
README
LICENSE
ChangeLog
}
# list the files you want to include here. you can
# check this manifest using 'rake :print_manifest'
s.files = %W{
README
LICENSE
ChangeLog
lib/zaml.rb
test/zaml_benchmarks.rb
test/zaml_test.rb
}
s.test_files = %W{
test/zaml_benchmarks.rb
test/zaml_test.rb
}
end