File: hikidoc.gemspec

package info (click to toggle)
ruby-hikidoc 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 264 kB
  • ctags: 190
  • sloc: ruby: 1,236; makefile: 25
file content (23 lines) | stat: -rw-r--r-- 1,093 bytes parent folder | download | duplicates (3)
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         = ['kazuhiko@fdiary.net', "shibata.hiroshi@gmail.com"]
  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