-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdocx_converter.gemspec
26 lines (23 loc) · 1.36 KB
/
docx_converter.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "docx_converter/version"
Gem::Specification.new do |s|
s.name = "docx_converter"
s.version = DocxConverter::VERSION
s.authors = ["Michael Franzl"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/michaelfranzl/docx_converter"
s.summary = %q{Converts Word docx files into html or LaTeX via the kramdown syntax}
s.description = %q{Converts Word docx files into html or LaTeX via the kramdown syntax. It supports Word's most common paragraph, character and mixed styles (Title, Heading, Strong, Quote), footnotes, tables, line breaks, page breaks, non-breaking spaces and images with captions. The output is in kramdown syntax (see http://kramdown.gettalong.org/) which can be converted into beautiful html and LaTex code.}
s.rubyforge_project = "docx_converter"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
s.add_runtime_dependency 'kramdown'
s.add_runtime_dependency 'nokogiri'
s.add_runtime_dependency 'rubyzip'
s.add_runtime_dependency 'rmagick'
s.add_runtime_dependency 'ruby-filemagic'
end