Sha256: 13a04b8b792da568a1de051a3a97f9ff4c9f2aa9970c4729a45c8d076a319f39
Contents?: true
Size: 1.96 KB
Versions: 3
Compression:
Stored size: 1.96 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 = '>= 2.4' spec.add_runtime_dependency 'logger' spec.add_runtime_dependency 'nokogiri', '=1.8.2' 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", "~> 2.0" spec.add_development_dependency "rake", "~> 10.0.4" spec.add_development_dependency "rspec", "~> 2.13.0" spec.add_development_dependency 'pry', "~> 0.12.2" spec.add_development_dependency 'pry-byebug', "~> 3.6" spec.add_development_dependency 'yard', "~> 0.9.11" spec.add_development_dependency 'redcarpet', "~> 2.2.2" spec.add_development_dependency 'graph', "~> 2.5.2" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
wortsammler-2.0.0.dev4 | wortsammler.gemspec |
wortsammler-2.0.0.dev3 | wortsammler.gemspec |
wortsammler-2.0.0.dev2 | wortsammler.gemspec |