-
Notifications
You must be signed in to change notification settings - Fork 2
/
oo2md2tex.gemspec
27 lines (26 loc) · 1.06 KB
/
oo2md2tex.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
Gem::Specification.new do |s|
s.name = 'oo2md2tex'
s.version = '0.1.6'
s.date = '2022-02-27'
s.summary = "oo2text and md2tex"
s.description = "A barebone Markdown to TeX/LaTeX converter kit via OmniOutliner"
s.authors = ["Shigeya Suzuki"]
s.email = 'shigeya@wide.ad.jp'
s.files = %w[lib/markdown_to_tex/processor.rb
lib/markdown_to_tex/renderer.rb
lib/markdown_to_tex/text_processor.rb
lib/markdown_to_tex.rb
bin/oo2text
bin/md2tex
bin/ja-count
bin/ja-ten-maru-normalize]
s.homepage = 'http://github.com/shigeya/oo2md2tex'
s.require_paths = %w[lib]
s.executables = ["oo2text","md2tex","ja-ten-maru-normalize","ja-count"]
s.extra_rdoc_files = %w[Format.md]
s.license = 'ISC'
s.required_ruby_version = '>= 1.9'
s.add_runtime_dependency 'redcarpet', '~> 3.5', '>= 3.5.1'
s.add_runtime_dependency 'nokogiri', '~> 1.13.2'
s.add_runtime_dependency 'rubyzip', '~> 1.3'
end