forked from metanorma/reverse_adoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reverse_adoc.gemspec
39 lines (32 loc) · 1.4 KB
/
reverse_adoc.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("lib", __dir__)
require "reverse_adoc/version"
Gem::Specification.new do |s|
s.name = "reverse_adoc"
s.version = ReverseAdoc::VERSION
s.authors = ["Ribose Inc."]
s.email = ["[email protected]"]
s.homepage = "http://github.com/metanorma/reverse_adoc"
s.summary = "Generate AsciiDoc from HTML and Microsoft Word via CLI or library."
s.description = "Generate AsciiDoc from HTML and Microsoft Word via CLI or library."
s.license = "BSD-2-Clause"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- exe/*`.split("\n").map { |f| File.basename(f) }
s.bindir = "exe"
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
# specify any dependencies here; for example:
s.add_dependency "marcel", "~> 1.0.0"
s.add_dependency "mathml2asciimath"
s.add_dependency "nokogiri", "~> 1.13"
s.add_development_dependency "codeclimate-test-reporter"
s.add_development_dependency "rake"
s.add_development_dependency "redcarpet"
s.add_development_dependency "rspec"
s.add_development_dependency "simplecov"
# spec.add_runtime_dependency "thor"
# All the following are for bin/w2m
s.add_dependency "premailer", "~> 1.11.0"
s.add_dependency "word-to-markdown"
end