-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlatexml-ruby.gemspec
25 lines (19 loc) · 1.01 KB
/
latexml-ruby.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "latexml-ruby"
spec.version = "0.0.2"
spec.authors = ["Deyan Ginev"]
spec.email = ["[email protected]"]
spec.summary = %q{Ruby wrapper for LaTeXML}
spec.description = %q{The wrapper automates LaTeX to HTML5 conversions with LaTeXML, addressing common production needs such as error-handling, timeouts, managing option sets and automatic recognition of available binaries.}
spec.homepage = "https://github.com/Authorea/latexml-ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.add_dependency 'escape_utils', '~> 1.2'
spec.add_dependency 'json', '~> 1.8'
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "minitest-reporters", "~> 1.1"
end