forked from htdebeer/pandocomatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpandocomatic.gemspec
25 lines (25 loc) · 1.25 KB
/
pandocomatic.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
Gem::Specification.new do |s|
s.name = 'pandocomatic'
s.version = '0.2.6'
s.license = 'GPL-3.0'
s.date = '2019-11-27'
s.summary = 'Automate the use of pandoc'
s.description = 'Pandocomatic is a tool to automate using pandoc. With pandocomatic you can express common patterns of using pandoc for generating your documents. Applied to a directory, pandocomatic can act as a static site generator.'
s.author = ['Huub de Beer']
s.email = '[email protected]'
s.required_ruby_version = ">= 2.4.4"
s.files = Dir['lib/pandocomatic/*.rb']
s.files += Dir['lib/pandocomatic/default_configuration.yaml']
s.files += Dir['lib/pandocomatic/command/*.rb']
s.files += Dir['lib/pandocomatic/error/*.rb']
s.files += Dir['lib/pandocomatic/processors/*.rb']
s.files += Dir['lib/pandocomatic/printer/*.rb']
s.files += Dir['lib/pandocomatic/printer/views/*.txt']
s.add_runtime_dependency 'paru', '~> 0.4', '>= 0.4.0'
s.add_runtime_dependency 'optimist', '~> 3.0.0', '>= 3.0.0'
s.add_development_dependency 'minitest-reporters', '~> 1.3'
s.add_development_dependency 'yard', '~> 0.9.18'
s.executables << 'pandocomatic'
s.homepage = 'https://heerdebeer.org/Software/markdown/pandocomatic/'
s.requirements << 'pandoc, a universal document converter'
end