1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
# -*- coding: utf-8; mode: ruby -*-
Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = "1.3.5"
s.name = 'rdtool'
s.version = '0.6.38'
s.date = '2012-11-27'
s.summary = "RDtool is formatter for RD."
s.description = "RD is multipurpose documentation format created for documentating Ruby and output of Ruby world. You can embed RD into Ruby script. And RD have neat syntax which help you to read document in Ruby script. On the other hand, RD have a feature for class reference."
s.authors = ["Youhei SASAKI"]
s.email = "uwabami@gfd-dennou.org"
s.homepage = "http://github.com/uwabami/rdtool"
s.licenses = ["GPL-2+", "Ruby"]
s.require_paths = ["lib"]
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.test_files = `git ls-files -- test/*`.split("\n")
s.add_development_dependency('racc', "~> 1.4.6")
s.add_development_dependency('rake', ">= 0") unless defined? Rake
# = MANIFEST =
s.files = %w[
COPYING.txt
Gemfile
HISTORY
LGPL-2.1
LICENSE.txt
README.html
README.ja.html
README.rd
README.rd.ja
Rakefile
TODO
bin/rd2
bin/rdswap.rb
doc/rd-draft.html
doc/rd-draft.ja.html
doc/rd-draft.rd
doc/rd-draft.rd.ja
lib/rd/block-element.rb
lib/rd/complex-list-item.rb
lib/rd/desclist.rb
lib/rd/document-struct.rb
lib/rd/dot.rd2rc
lib/rd/element.rb
lib/rd/filter.rb
lib/rd/head-filter.rb
lib/rd/inline-element.rb
lib/rd/labeled-element.rb
lib/rd/list.rb
lib/rd/loose-struct.rb
lib/rd/methodlist.rb
lib/rd/output-format-visitor.rb
lib/rd/package.rb
lib/rd/parser-util.rb
lib/rd/post-install
lib/rd/pre-setup.rb
lib/rd/rbl-file.rb
lib/rd/rbl-suite.rb
lib/rd/rd-struct.rb
lib/rd/rd2html-ext-lib.rb
lib/rd/rd2html-ext-opt.rb
lib/rd/rd2html-lib.rb
lib/rd/rd2html-opt.rb
lib/rd/rd2man-lib.rb
lib/rd/rd2rdo-lib.rb
lib/rd/rd2rmi-lib.rb
lib/rd/rdblockparser.ry
lib/rd/rdblockparser.tab.rb
lib/rd/rdfmt.rb
lib/rd/rdinlineparser.ry
lib/rd/rdinlineparser.tab.rb
lib/rd/rdvisitor.rb
lib/rd/reference-resolver.rb
lib/rd/search-file.rb
lib/rd/tree.rb
lib/rd/version.rb
lib/rd/visitor.rb
rdtool.gemspec
setup.rb
test/data/includee1.html
test/data/includee2.html
test/data/includee3.nothtml
test/data/includee4.xhtml
test/data/label.rbl
test/data/label2.rbl
test/data/sub/includee2.html
test/data/sub/includee4.html
test/dummy-observer.rb
test/dummy.rb
test/temp-dir.rb
test/test-block-parser.rb
test/test-desclist-item.rb
test/test-document-element.rb
test/test-document-struct.rb
test/test-element.rb
test/test-headline.rb
test/test-inline-parser.rb
test/test-list-item.rb
test/test-list.rb
test/test-methodlist-item.rb
test/test-nonterminal-element.rb
test/test-nonterminal-inline.rb
test/test-output-format-visitor.rb
test/test-parser-util.rb
test/test-rbl-file.rb
test/test-rbl-suite.rb
test/test-rd2html-lib.rb
test/test-rdtree.rb
test/test-rdvisitor.rb
test/test-reference-resolver.rb
test/test-reference.rb
test/test-search-file.rb
test/test-terminal-inline.rb
test/test-textblock.rb
test/test-tree.rb
test/test-version.rb
test/test-visitor.rb
utils/rd-mode.el
]
# = MANIFEST =
end
|