~ubuntu-branches/ubuntu/wily/tdiary/wily

« back to all changes in this revision

Viewing changes to vendor/rdtool-0.6.33/rdtool.gemspec

  • Committer: Package Import Robot
  • Author(s): Hideki Yamane
  • Date: 2013-05-19 16:14:01 UTC
  • mfrom: (12.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130519161401-hf5oyr8g8a94fsew
Tags: 3.2.2-2
Upload to unstable 

Show diffs side-by-side

added added

removed removed

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