forked from benbalter/word-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathword-to-markdown.gemspec
31 lines (30 loc) · 1.17 KB
/
word-to-markdown.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
require File.expand_path('../lib/word-to-markdown/version', __FILE__)
Gem::Specification.new do |s|
s.name = "word-to-markdown"
s.summary = "Ruby Gem to convert Word documents to markdown"
s.description = "Ruby Gem to convert Word documents to markdown."
s.version = WordToMarkdown::VERSION
s.authors = ["Ben Balter"]
s.email = "[email protected]"
s.homepage = "https://github.com/benbalter/word-to-markdown"
s.licenses = ["MIT"]
s.files = [
"lib/word-to-markdown.rb",
"lib/word-to-markdown/version.rb",
"lib/word-to-markdown/document.rb",
"lib/word-to-markdown/converter.rb",
"lib/nokogiri/xml/element.rb",
"bin/w2m"
]
s.executables = ["w2m"]
s.add_dependency("reverse_markdown","~> 0.6")
s.add_dependency("descriptive_statistics", "~> 2.5")
s.add_dependency("premailer", "~> 1.8")
s.add_dependency("nokogiri-styles", "~> 0.1")
s.add_development_dependency("rake", "~> 10.4")
s.add_development_dependency("shoulda", "~> 3.5")
s.add_development_dependency("bundler", "~> 1.6")
s.add_development_dependency("pry", "~> 0.10")
s.add_development_dependency("mocha", "~> 1.1")
s.add_development_dependency("minitest", "~> 4.7")
end