forked from rtomayko/tilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tilt.gemspec
68 lines (62 loc) · 1.65 KB
/
tilt.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.name = 'tilt'
s.version = '2.0.10'
s.date = '2019-09-23'
s.description = "Generic interface to multiple Ruby template engines"
s.summary = s.description
s.license = "MIT"
s.authors = ["Ryan Tomayko"]
s.email = "[email protected]"
# = MANIFEST =
s.files = %w[
COPYING
bin/tilt
lib/tilt.rb
lib/tilt/asciidoc.rb
lib/tilt/babel.rb
lib/tilt/bluecloth.rb
lib/tilt/builder.rb
lib/tilt/coffee.rb
lib/tilt/commonmarker.rb
lib/tilt/creole.rb
lib/tilt/csv.rb
lib/tilt/dummy.rb
lib/tilt/erb.rb
lib/tilt/erubi.rb
lib/tilt/erubis.rb
lib/tilt/etanni.rb
lib/tilt/haml.rb
lib/tilt/kramdown.rb
lib/tilt/less.rb
lib/tilt/liquid.rb
lib/tilt/livescript.rb
lib/tilt/mapping.rb
lib/tilt/markaby.rb
lib/tilt/maruku.rb
lib/tilt/nokogiri.rb
lib/tilt/pandoc.rb
lib/tilt/plain.rb
lib/tilt/prawn.rb
lib/tilt/radius.rb
lib/tilt/rdiscount.rb
lib/tilt/rdoc.rb
lib/tilt/redcarpet.rb
lib/tilt/redcloth.rb
lib/tilt/rst-pandoc.rb
lib/tilt/sass.rb
lib/tilt/sigil.rb
lib/tilt/string.rb
lib/tilt/template.rb
lib/tilt/typescript.rb
lib/tilt/wikicloth.rb
lib/tilt/yajl.rb
]
# = MANIFEST =
s.executables = ['tilt']
s.homepage = "http://github.com/rtomayko/tilt/"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Tilt", "--main", "Tilt"]
s.require_paths = %w[lib]
s.rubygems_version = '1.1.1'
end