wrongdoc 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +8 -0
- data/.gitignore +10 -0
- data/.manifest +38 -0
- data/.wrongdoc.yml +7 -0
- data/COPYING +674 -0
- data/ChangeLog +9 -0
- data/Documentation/.gitignore +4 -0
- data/Documentation/GNUmakefile +32 -0
- data/Documentation/dotwrongdoc.5.ronn +23 -0
- data/Documentation/wrongdoc.1.ronn +17 -0
- data/GIT-VERSION-FILE +1 -0
- data/GIT-VERSION-GEN +40 -0
- data/GNUmakefile +114 -0
- data/LATEST +4 -0
- data/LICENSE +17 -0
- data/NEWS +4 -0
- data/README +40 -0
- data/bin/wrongdoc +20 -0
- data/dotwrongdoc_5 +0 -0
- data/lib/wrongdoc/changelog.rb +25 -0
- data/lib/wrongdoc/final.rb +105 -0
- data/lib/wrongdoc/gemspec.rb +18 -0
- data/lib/wrongdoc/history.rb +50 -0
- data/lib/wrongdoc/merge.rb +20 -0
- data/lib/wrongdoc/news_atom.rb +46 -0
- data/lib/wrongdoc/news_rdoc.rb +30 -0
- data/lib/wrongdoc/parse_xml.rb +11 -0
- data/lib/wrongdoc/prepare.rb +17 -0
- data/lib/wrongdoc/rdoc.rb +68 -0
- data/lib/wrongdoc/rdoc_options.rb +11 -0
- data/lib/wrongdoc/readme.rb +20 -0
- data/lib/wrongdoc/release.rb +44 -0
- data/lib/wrongdoc.rb +35 -0
- data/man/man1/wrongdoc.1 +19 -0
- data/man/man5/dotwrongdoc.5 +22 -0
- data/setup.rb +1586 -0
- data/wrongdoc.gemspec +27 -0
- data/wrongdoc_1 +0 -0
- metadata +179 -0
data/wrongdoc.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# -*- encoding: binary -*-
|
2
|
+
ENV["VERSION"] or abort "VERSION= must be specified"
|
3
|
+
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
|
4
|
+
$LOAD_PATH << 'lib'
|
5
|
+
require 'wrongdoc'
|
6
|
+
extend Wrongdoc::Gemspec
|
7
|
+
name, summary, title = readme_metadata
|
8
|
+
|
9
|
+
Gem::Specification.new do |s|
|
10
|
+
s.name = %q{wrongdoc}
|
11
|
+
s.version = ENV["VERSION"].dup
|
12
|
+
s.authors = ["#{name} hackers"]
|
13
|
+
s.date = Time.now.utc.strftime('%Y-%m-%d')
|
14
|
+
s.description = readme_description
|
15
|
+
s.email = %q{wrongdoc@librelist.org}
|
16
|
+
s.executables = %w(wrongdoc)
|
17
|
+
s.extra_rdoc_files = extra_rdoc_files(manifest)
|
18
|
+
s.files = manifest
|
19
|
+
s.homepage = Wrongdoc.config[:rdoc_url]
|
20
|
+
s.summary = summary
|
21
|
+
s.rdoc_options = rdoc_options
|
22
|
+
s.require_paths = %w(lib)
|
23
|
+
s.rubyforge_project = %q{rainbows}
|
24
|
+
s.add_dependency(%q<nokogiri>, ['~> 1.4.4'])
|
25
|
+
s.add_dependency(%q<tidy_ffi>, ['~> 0.1.3'])
|
26
|
+
s.add_dependency(%q<rdoc>, ['~> 3.0.1'])
|
27
|
+
end
|
data/wrongdoc_1
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wrongdoc
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- wrongdoc hackers
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-12-24 00:00:00 +00:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: nokogiri
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 15
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 4
|
33
|
+
- 4
|
34
|
+
version: 1.4.4
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: tidy_ffi
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 29
|
46
|
+
segments:
|
47
|
+
- 0
|
48
|
+
- 1
|
49
|
+
- 3
|
50
|
+
version: 0.1.3
|
51
|
+
type: :runtime
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: rdoc
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 5
|
62
|
+
segments:
|
63
|
+
- 3
|
64
|
+
- 0
|
65
|
+
- 1
|
66
|
+
version: 3.0.1
|
67
|
+
type: :runtime
|
68
|
+
version_requirements: *id003
|
69
|
+
description: |-
|
70
|
+
wrongdoc mangles an existing RDoc directory and makes any changes we
|
71
|
+
feel like. It mainly removes JavaScript from Darkfish and adds links to
|
72
|
+
a {cgit}[http://hjemli.net/git/cgit/] instance. It is a bikeshed
|
73
|
+
project and *entirely* subject to the whims of its creator, so it is
|
74
|
+
likely the wrong solution for anybody else.
|
75
|
+
email: wrongdoc@librelist.org
|
76
|
+
executables:
|
77
|
+
- wrongdoc
|
78
|
+
extensions: []
|
79
|
+
|
80
|
+
extra_rdoc_files:
|
81
|
+
- ChangeLog
|
82
|
+
- lib/wrongdoc.rb
|
83
|
+
- lib/wrongdoc/changelog.rb
|
84
|
+
- lib/wrongdoc/final.rb
|
85
|
+
- lib/wrongdoc/gemspec.rb
|
86
|
+
- lib/wrongdoc/history.rb
|
87
|
+
- lib/wrongdoc/merge.rb
|
88
|
+
- lib/wrongdoc/news_atom.rb
|
89
|
+
- lib/wrongdoc/news_rdoc.rb
|
90
|
+
- lib/wrongdoc/parse_xml.rb
|
91
|
+
- lib/wrongdoc/prepare.rb
|
92
|
+
- lib/wrongdoc/rdoc.rb
|
93
|
+
- lib/wrongdoc/rdoc_options.rb
|
94
|
+
- lib/wrongdoc/readme.rb
|
95
|
+
- lib/wrongdoc/release.rb
|
96
|
+
- NEWS
|
97
|
+
- README
|
98
|
+
- LATEST
|
99
|
+
- LICENSE
|
100
|
+
- wrongdoc_1
|
101
|
+
- dotwrongdoc_5
|
102
|
+
files:
|
103
|
+
- .document
|
104
|
+
- .gitignore
|
105
|
+
- .manifest
|
106
|
+
- .wrongdoc.yml
|
107
|
+
- COPYING
|
108
|
+
- ChangeLog
|
109
|
+
- Documentation/.gitignore
|
110
|
+
- Documentation/GNUmakefile
|
111
|
+
- Documentation/dotwrongdoc.5.ronn
|
112
|
+
- Documentation/wrongdoc.1.ronn
|
113
|
+
- GIT-VERSION-FILE
|
114
|
+
- GIT-VERSION-GEN
|
115
|
+
- GNUmakefile
|
116
|
+
- LATEST
|
117
|
+
- LICENSE
|
118
|
+
- NEWS
|
119
|
+
- README
|
120
|
+
- bin/wrongdoc
|
121
|
+
- dotwrongdoc_5
|
122
|
+
- lib/wrongdoc.rb
|
123
|
+
- lib/wrongdoc/changelog.rb
|
124
|
+
- lib/wrongdoc/final.rb
|
125
|
+
- lib/wrongdoc/gemspec.rb
|
126
|
+
- lib/wrongdoc/history.rb
|
127
|
+
- lib/wrongdoc/merge.rb
|
128
|
+
- lib/wrongdoc/news_atom.rb
|
129
|
+
- lib/wrongdoc/news_rdoc.rb
|
130
|
+
- lib/wrongdoc/parse_xml.rb
|
131
|
+
- lib/wrongdoc/prepare.rb
|
132
|
+
- lib/wrongdoc/rdoc.rb
|
133
|
+
- lib/wrongdoc/rdoc_options.rb
|
134
|
+
- lib/wrongdoc/readme.rb
|
135
|
+
- lib/wrongdoc/release.rb
|
136
|
+
- man/man1/wrongdoc.1
|
137
|
+
- man/man5/dotwrongdoc.5
|
138
|
+
- setup.rb
|
139
|
+
- wrongdoc.gemspec
|
140
|
+
- wrongdoc_1
|
141
|
+
has_rdoc: true
|
142
|
+
homepage: http://bogomips.org/wrongdoc/
|
143
|
+
licenses: []
|
144
|
+
|
145
|
+
post_install_message:
|
146
|
+
rdoc_options:
|
147
|
+
- -t
|
148
|
+
- wrongdoc - RDoc done right (IMNSHO)
|
149
|
+
- -W
|
150
|
+
- http://git.bogomips.org/cgit/wrongdoc.git/tree/%s
|
151
|
+
require_paths:
|
152
|
+
- lib
|
153
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
154
|
+
none: false
|
155
|
+
requirements:
|
156
|
+
- - ">="
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
hash: 3
|
159
|
+
segments:
|
160
|
+
- 0
|
161
|
+
version: "0"
|
162
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
163
|
+
none: false
|
164
|
+
requirements:
|
165
|
+
- - ">="
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
hash: 3
|
168
|
+
segments:
|
169
|
+
- 0
|
170
|
+
version: "0"
|
171
|
+
requirements: []
|
172
|
+
|
173
|
+
rubyforge_project: rainbows
|
174
|
+
rubygems_version: 1.3.7
|
175
|
+
signing_key:
|
176
|
+
specification_version: 3
|
177
|
+
summary: RDoc done right (IMNSHO)
|
178
|
+
test_files: []
|
179
|
+
|