Sha256: d8c54214bee2034e3c8ee28451c6305dc2d9d9580641b06d8e2d8541fc6aab4f
Contents?: true
Size: 1.89 KB
Versions: 1
Compression:
Stored size: 1.89 KB
Contents
# 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 = ["github.com@nospam.weichel21.de"] 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' spec.add_runtime_dependency "rubyXL" spec.add_runtime_dependency 'diffy', "~> 2.1.3" spec.add_runtime_dependency 'zip' 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wortsammler-1.0.0 | wortsammler.gemspec |