-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhamdown-engine.gemspec
37 lines (30 loc) · 1.05 KB
/
hamdown-engine.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.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 = 'hamdown-engine'
s.version = '0.1.3'
s.date = '2018-12-11'
s.description = "Next generation template language for fans of Haml and Markdown"
s.summary = s.description
s.license = "MIT"
s.authors = ["Ivan Nemytchenko", "Vlad Kopylov"]
s.email = "[email protected]"
# = MANIFEST =
s.files = %w[
bin/hamdown
lib/hamdown.rb
lib/hamdown/cli.rb
lib/hamdown/engine.rb
lib/hamdown/haml_handler.rb
lib/hamdown/md_handler.rb
]
# = MANIFEST =
s.add_runtime_dependency 'hamdown_core'
s.add_runtime_dependency 'haml'
s.add_runtime_dependency 'markdown'
s.executables = ['hamdown']
s.homepage = "http://github.com/inem/hamdown/"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Hamdown", "--main", "Hamdown"]
s.require_paths = %w[lib]
s.rubygems_version = '1.1.1'
end