Sha256: 87895f80c050a89987aa83dc44c6200c6a5b0e6dc6972fa153f48187a82dc4c3
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 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" spec.add_development_dependency "rspec" spec.add_development_dependency 'pry' spec.add_development_dependency 'yard' spec.add_development_dependency 'redcarpet' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wortsammler-0.0.3 | wortsammler.gemspec |