1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hikidoc'
Gem::Specification.new do |spec|
spec.name = "hikidoc"
spec.version = HikiDoc::VERSION
spec.authors = ['Kazuhiko', "SHIBATA Hiroshi"]
spec.email = ['[email protected]', "[email protected]"]
spec.description = %q{'HikiDoc' is a text-to-HTML conversion tool for web writers.}
spec.summary = %q{'HikiDoc' is a text-to-HTML conversion tool for web writers. HikiDoc allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML (or XHTML).}
spec.homepage = "https://github.com/hiki/hikidoc"
spec.license = "BSD-3-clause"
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"
spec.add_development_dependency "rake"
end
|