-
Notifications
You must be signed in to change notification settings - Fork 0
/
wortsammler.gemspec
54 lines (45 loc) · 1.9 KB
/
wortsammler.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wortsammler/version'
Gem::Specification.new do |spec|
spec.name = "wortsammler"
spec.version = Wortsammler::VERSION
spec.authors = ["Bernhard Weichel"]
spec.email = ["[email protected]"]
spec.description = <<END_DOC
wortsammler is an environment to manage documentation.
Basically it comprises of
* a directory structure to organize the document sources
* a manifest file to control the publication process
* a tool to produce the doucments
Particular features of wortsammler are
* various output formats
* support of requirement management
* generate documents for different audiences based on
single sources
* text snippets (markdown and xlsx)
wortsammler is based on ruby, pandoc, latex
END_DOC
spec.required_ruby_version = '>= 1.9.3'
spec.add_runtime_dependency 'logger'
spec.add_runtime_dependency 'nokogiri', '=1.5.10 '
spec.add_runtime_dependency 'rubyXL'
spec.add_runtime_dependency 'diffy', "~> 2.1.3"
spec.add_runtime_dependency 'rubyzip'
spec.add_runtime_dependency 'treetop'
spec.summary = %q{an environment to manage documentation}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 10.0.4"
spec.add_development_dependency "rspec", "~> 2.13.0"
spec.add_development_dependency 'pry', "~> 0.9.12"
spec.add_development_dependency 'yard', "~> 0.8.5.2"
spec.add_development_dependency 'redcarpet', "~> 2.2.2"
spec.add_development_dependency 'graph', "~> 2.5.2"
end