forked from speedmax/h2o
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathh2o.gemspec
40 lines (40 loc) · 1.08 KB
/
h2o.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
Gem::Specification.new do |s|
s.name = "h2o"
s.version = "0.2"
s.date = "2008-09-5"
s.summary = "Django inspired template markup"
s.email = "[email protected]"
s.homepage = "http://github.com/speedmax/h2o"
s.description = "h2o is a django inspired template that offers natural template syntax and easy to integrate."
s.has_rdoc = true
s.authors = ["Taylor Luk"]
s.files = ["README.md",
"h2o.gemspec",
"lib/h2o.rb",
"lib/h2o/",
"lib/h2o/constants.rb",
"lib/h2o/context.rb",
"lib/h2o/datatype.rb",
"lib/h2o/errors.rb",
"lib/h2o/filters.rb",
"lib/h2o/nodes.rb",
"lib/h2o/parser.rb",
"lib/h2o/tags.rb",
"lib/h2o/tags/block.rb",
"lib/h2o/tags/for.rb",
"lib/h2o/tags/if.rb",
"lib/h2o/tags/with.rb",
"example/server.rb",
"example/run.rb",
"example/server",
"example/server.bat",
"example/request.html",
"example/erb/base.html",
"example/h2o/base.html",
"example/h2o/inherit.html",
"example/liquid/base.html",
]
s.test_files = []
s.rdoc_options = ["--main", "README"]
s.extra_rdoc_files = ["README"]
end