rdoc-generator-fivefish 0.0.1.pre16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. data/.autotest +23 -0
  2. data/History.rdoc +4 -0
  3. data/Manifest.txt +27 -0
  4. data/README.rdoc +74 -0
  5. data/Rakefile +78 -0
  6. data/data/rdoc-generator-fivefish/css/bootstrap-responsive.min.css +4 -0
  7. data/data/rdoc-generator-fivefish/css/bootstrap.min.css +632 -0
  8. data/data/rdoc-generator-fivefish/css/fivefish.css +185 -0
  9. data/data/rdoc-generator-fivefish/fonts/IstokWeb-Bold.woff +0 -0
  10. data/data/rdoc-generator-fivefish/fonts/IstokWeb-BoldItalic.woff +0 -0
  11. data/data/rdoc-generator-fivefish/fonts/IstokWeb-Italic.woff +0 -0
  12. data/data/rdoc-generator-fivefish/fonts/IstokWeb-Regular.woff +0 -0
  13. data/data/rdoc-generator-fivefish/fonts/OFL.txt +94 -0
  14. data/data/rdoc-generator-fivefish/img/glyphicons-halflings-white.png +0 -0
  15. data/data/rdoc-generator-fivefish/img/glyphicons-halflings.png +0 -0
  16. data/data/rdoc-generator-fivefish/js/bootstrap.min.js +1 -0
  17. data/data/rdoc-generator-fivefish/js/fivefish.js +26 -0
  18. data/data/rdoc-generator-fivefish/js/jquery-1.7.1.min.js +4 -0
  19. data/data/rdoc-generator-fivefish/prototype-classpage.html +101 -0
  20. data/data/rdoc-generator-fivefish/prototype.html +325 -0
  21. data/data/rdoc-generator-fivefish/templates/class.tmpl +156 -0
  22. data/data/rdoc-generator-fivefish/templates/file.tmpl +10 -0
  23. data/data/rdoc-generator-fivefish/templates/index.tmpl +40 -0
  24. data/data/rdoc-generator-fivefish/templates/layout.tmpl +94 -0
  25. data/lib/fivefish.rb +28 -0
  26. data/lib/rdoc/discover.rb +5 -0
  27. data/lib/rdoc/generator/fivefish.rb +292 -0
  28. data.tar.gz.sig +3 -0
  29. metadata +174 -0
  30. metadata.gz.sig +3 -0
@@ -0,0 +1,94 @@
1
+ <!DOCTYPE html>
2
+ <!--
3
+
4
+ Fivefish RDoc Generator
5
+ $Id$
6
+
7
+ Authors:
8
+ - Michael Granger <ged@FaerieMUD.org>
9
+
10
+ -->
11
+ <html lang="en">
12
+ <head>
13
+ <title><?escape rdoc_options.title ?></title>
14
+
15
+ <meta charset="utf-8">
16
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
17
+
18
+ <link href="[?attr rel_prefix ?]/css/fivefish.css" rel="stylesheet" />
19
+
20
+ <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
21
+ <!--[if lt IE 9]>
22
+ <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
23
+ <![endif]-->
24
+
25
+ <link rel="shortcut icon" href="images/favicon.ico">
26
+ <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
27
+ <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
28
+ <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
29
+
30
+ <script src="[?attr rel_prefix ?]/js/jquery-1.7.1.min.js" type="text/javascript"
31
+ defer="defer" charset="utf-8"></script>
32
+ <script src="[?attr rel_prefix ?]/js/bootstrap.min.js" type="text/javascript"
33
+ defer="defer" charset="utf-8"></script>
34
+ <script src="[?attr rel_prefix ?]/js/fivefish.js" type="text/javascript"
35
+ defer="defer" charset="utf-8" onload="initFivefish()"></script>
36
+ </head>
37
+
38
+ <body class="[?attr pageclass ?]">
39
+
40
+ <nav class="navbar navbar-fixed-top">
41
+ <div class="navbar-inner">
42
+ <div class="container">
43
+ <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
44
+ <span class="icon-bar"></span>
45
+ <span class="icon-bar"></span>
46
+ <span class="icon-bar"></span>
47
+ </a>
48
+
49
+ <a class="brand"
50
+ href="[?attr rel_prefix ?]/index.html"><?escape rdoc_options.title ?></a>
51
+
52
+ <div class="nav-collapse">
53
+ <ul class="nav">
54
+ <li class="dropdown">
55
+ <a href="#"
56
+ class="dropdown-toggle"
57
+ data-toggle="dropdown">
58
+ Classes
59
+ <b class="caret"></b>
60
+ </a>
61
+ <ul class="dropdown-menu">
62
+ <?for index_class in modsort.select( &:documented? ) ?>
63
+ <li><a href="[?attr rel_prefix ?]/[?call index_class.path ?]"><?call
64
+ index_class.full_name ?></a></li>
65
+ <?end for ?>
66
+ </ul>
67
+ </li>
68
+ <?for file in files.select {|f| f.text? }.sort ?>
69
+ <li><a href="[?attr rel_prefix ?]/[?call file.path ?]"><?escape file.page_name ?></a></li>
70
+ <?end for ?>
71
+ </ul>
72
+ </div><!--/.nav-collapse -->
73
+ <form class="navbar-search pull-right">
74
+ <input type="text" class="search-query" placeholder="Search">
75
+ </form>
76
+ </div>
77
+ </div>
78
+ </nav>
79
+
80
+ <div class="container">
81
+ <?attr contents ?>
82
+
83
+ <hr>
84
+
85
+ <footer>
86
+ <div class="container">
87
+ <span id="rdoc-version">Generated by RDoc <?attr rdoc_version ?>.</span> using the
88
+ <span id="generator-version"><?attr fivefish_version ?> generator.</span>
89
+ </div>
90
+ </footer>
91
+ </div> <!-- /container -->
92
+
93
+ </body>
94
+ </html>
data/lib/fivefish.rb ADDED
@@ -0,0 +1,28 @@
1
+ # -*- mode: ruby; ruby-indent-level: 4; tab-width: 4 -*-
2
+
3
+ require 'rdoc/rdoc'
4
+ require 'rdoc/generator/fivefish'
5
+
6
+ # :title: Fivefish RDoc
7
+ #--
8
+ # Toplevel namespace for Fivefish. The main goods are in RDoc::Generator::Fivefish.
9
+ module Fivefish
10
+
11
+ # Library version constant
12
+ VERSION = '0.0.1'
13
+
14
+ # Version-control revision constant
15
+ REVISION = %q$Revision: 083bb9b1a6de $
16
+
17
+ # Fivefish project URL
18
+ PROJECT_URL = 'http://deveiate.org/fivefish.html'
19
+
20
+ ### Get the library version. If +include_buildnum+ is true, the version string will
21
+ ### include the VCS rev ID.
22
+ def self::version_string( include_buildnum=false )
23
+ vstring = "Fivefish RDoc %s" % [ VERSION ]
24
+ vstring << " (build %s)" % [ REVISION[/: ([[:xdigit:]]+)/, 1] || '0' ] if include_buildnum
25
+ return vstring
26
+ end
27
+
28
+ end # module Fivefish
@@ -0,0 +1,5 @@
1
+ # -*- ruby -*-
2
+
3
+ # RDoc plugin hook
4
+ require 'fivefish'
5
+
@@ -0,0 +1,292 @@
1
+ # -*- mode: ruby; ruby-indent-level: 4; tab-width: 4 -*-
2
+
3
+ require 'pry'
4
+
5
+ gem 'rdoc', '~> 3.12'
6
+
7
+ require 'inversion'
8
+ require 'fileutils'
9
+ require 'pathname'
10
+ require 'rdoc/rdoc'
11
+ require 'rdoc/generator/json_index'
12
+
13
+ # The Fivefish generator class.
14
+ class RDoc::Generator::Fivefish
15
+ include FileUtils
16
+
17
+ # The data directory in the project if that exists, otherwise the gem datadir
18
+ DATADIR = if ENV['FIVEFISH_DATADIR']
19
+ Pathname( ENV['FIVEFISH_DATADIR'] ).expand_path( Pathname.pwd )
20
+ elsif File.directory?( 'data/rdoc-generator-fivefish' )
21
+ Pathname( 'data/fivefish' ).expand_path( Pathname.pwd )
22
+ elsif path = Gem.datadir('rdoc-generator-fivefish')
23
+ Pathname( path )
24
+ else
25
+ raise ScriptError, "can't find the data directory!"
26
+ end
27
+
28
+ # Register with RDoc as an alternative generator
29
+ RDoc::RDoc.add_generator( self )
30
+
31
+
32
+ ### Set up some instance variables
33
+ def initialize( options )
34
+ @options = options
35
+ $DEBUG_RDOC = true
36
+
37
+ extend( FileUtils::Verbose ) if $DEBUG_RDOC
38
+ extend( FileUtils::DryRun ) if options.dry_run
39
+
40
+ @base_dir = Pathname.pwd.expand_path
41
+ @template_dir = DATADIR
42
+ @output_dir = Pathname( @options.op_dir ).expand_path( @base_dir )
43
+
44
+ @template_cache = {}
45
+ @files = nil
46
+ @classes = nil
47
+
48
+ @json_index = RDoc::Generator::JsonIndex.new( self, options )
49
+
50
+ Inversion::Template.configure( :template_paths => [self.template_dir + 'templates'] )
51
+ end
52
+
53
+
54
+ ######
55
+ public
56
+ ######
57
+
58
+ # The base directory (current working directory) as a Pathname
59
+ attr_reader :base_dir
60
+
61
+ # The directory containing templates as a Pathname
62
+ attr_reader :template_dir
63
+
64
+ # The output directory as a Pathname
65
+ attr_reader :output_dir
66
+
67
+ # The command-line options given to the rdoc command
68
+ attr_reader :options
69
+
70
+
71
+ ### Output progress information if debugging is enabled
72
+ def debug_msg( *msg )
73
+ return unless $DEBUG_RDOC
74
+ $stderr.puts( *msg )
75
+ end
76
+
77
+
78
+ ### Backward-compatible (no-op) method.
79
+ def class_dir # :nodoc:
80
+ nil
81
+ end
82
+ alias_method :file_dir, :class_dir
83
+
84
+
85
+ ### Create the directories the generated docs will live in if they don't
86
+ ### already exist.
87
+ def gen_sub_directories
88
+ self.output_dir.mkpath
89
+ end
90
+
91
+
92
+ ### Build the initial indices and output objects based on an array of TopLevel
93
+ ### objects containing the extracted information.
94
+ def generate( top_levels )
95
+ @files = top_levels.sort
96
+ @classes = RDoc::TopLevel.all_classes_and_modules.sort
97
+ @methods = @classes.map {|m| m.method_list }.flatten.sort
98
+ @modsort = self.get_sorted_module_list( @classes )
99
+
100
+ self.generate_index
101
+ self.generate_class_files
102
+ self.generate_file_files
103
+
104
+ # @json_index.generate( top_levels )
105
+
106
+ self.copy_static_assets
107
+ end
108
+
109
+
110
+ #########
111
+ protected
112
+ #########
113
+
114
+
115
+ ### Return an Array of Pathname objects for each file/directory in the
116
+ ### list of static assets that should be copied into the output directory.
117
+ def find_static_assets
118
+ paths = self.options.static_path || []
119
+ self.debug_msg "Finding asset paths. Static paths: %p" % [ paths ]
120
+
121
+ # Add each subdirectory of the template dir
122
+ self.debug_msg " adding directories under %s" % [ self.template_dir ]
123
+ paths << self.template_dir
124
+ self.debug_msg " paths are now: %p" % [ paths ]
125
+
126
+ return paths.flatten.compact.uniq
127
+ end
128
+
129
+
130
+ ### Copies static files from the static_path into the output directory
131
+ def copy_static_assets
132
+ asset_paths = self.find_static_assets
133
+
134
+ self.debug_msg "Copying assets from paths:", *asset_paths
135
+
136
+ asset_paths.each do |path|
137
+
138
+ # For plain files, just install them
139
+ if path.file?
140
+ self.debug_msg " plain file; installing as-is"
141
+ install( path, self.output_dir, :mode => 0644 )
142
+
143
+ # Glob all the files out of subdirectories and install them
144
+ elsif path.directory?
145
+ self.debug_msg " directory %p; copying contents" % [ path ]
146
+
147
+ Pathname.glob( path + '{css,fonts,img,js}/**/*'.to_s ).each do |asset|
148
+ next if asset.directory? || asset.basename.to_s.start_with?( '.' )
149
+
150
+ dst = asset.relative_path_from( path )
151
+ dst.dirname.mkpath
152
+
153
+ self.debug_msg " %p -> %p" % [ asset, dst ]
154
+ install asset, dst, :mode => 0644
155
+ end
156
+ end
157
+ end
158
+ end
159
+
160
+
161
+ ### Return a list of the documented modules sorted by salience first, then
162
+ ### by name.
163
+ def get_sorted_module_list(classes)
164
+ nscounts = classes.inject({}) do |counthash, klass|
165
+ top_level = klass.full_name.gsub( /::.*/, '' )
166
+ counthash[top_level] ||= 0
167
+ counthash[top_level] += 1
168
+
169
+ counthash
170
+ end
171
+
172
+ # Sort based on how often the top level namespace occurs, and then on the
173
+ # name of the module -- this works for projects that put their stuff into
174
+ # a namespace, of course, but doesn't hurt if they don't.
175
+ classes.sort_by do |klass|
176
+ top_level = klass.full_name.gsub( /::.*/, '' )
177
+ [nscounts[top_level] * -1, klass.full_name]
178
+ end.select do |klass|
179
+ klass.display?
180
+ end
181
+ end
182
+
183
+
184
+ ### Fetch the template with the specified +name+ from the cache or load it
185
+ ### and cache it.
186
+ def load_template( name )
187
+ unless @template_cache.key?( name )
188
+ @template_cache[ name ] = Inversion::Template.load( name )
189
+ end
190
+
191
+ return @template_cache[ name ].dup
192
+ end
193
+
194
+
195
+ ### Load the layout template and return it after setting any values it needs.
196
+ def load_layout_template
197
+ template = self.load_template( 'layout.tmpl' )
198
+
199
+ template.files = @files
200
+ template.classes = @classes
201
+ template.methods = @methods
202
+ template.modsort = @modsort
203
+ template.rdoc_options = @options
204
+
205
+ template.rdoc_version = RDoc::VERSION
206
+ template.fivefish_version = Fivefish.version_string
207
+
208
+ return template
209
+ end
210
+
211
+
212
+ ### Generate an index page which lists all the classes which are documented.
213
+ def generate_index
214
+ self.debug_msg "Generating index page"
215
+ layout = self.load_layout_template
216
+ template = self.load_template( 'index.tmpl' )
217
+ out_file = self.output_dir + 'index.html'
218
+ out_file.dirname.mkpath
219
+
220
+ mainpage = nil
221
+ if mpname = self.options.main_page
222
+ mainpage = @files.find {|f| f.full_name == mpname }
223
+ else
224
+ mainpage = @files.find {|f| f.full_name =~ /\breadme\b/i }
225
+ end
226
+ self.debug_msg " using main_page (%s)" % [ mainpage ]
227
+
228
+ template.mainpage = mainpage
229
+ template.synopsis = mainpage.description.scan( %r{(<(h1|p).*?</\2>)}m )[0,3].map( &:first )
230
+ template.all_methods = RDoc::TopLevel.all_classes_and_modules.flat_map do |mod|
231
+ mod.method_list
232
+ end.sort
233
+
234
+ layout.rel_prefix = self.output_dir.relative_path_from( out_file.dirname )
235
+ layout.contents = template
236
+ layout.pageclass = 'index-page'
237
+
238
+ out_file.open( 'w', 0644 ) {|io| io.print(layout.render) }
239
+ end
240
+
241
+
242
+ ### Generate a documentation file for each class and module
243
+ def generate_class_files
244
+ layout = self.load_layout_template
245
+ template = self.load_template( 'class.tmpl' )
246
+
247
+ debug_msg "Generating class documentation in #{self.output_dir}"
248
+
249
+ @classes.each do |klass|
250
+ debug_msg " working on %s (%s)" % [klass.full_name, klass.path]
251
+
252
+ out_file = self.output_dir + klass.path
253
+ out_file.dirname.mkpath
254
+
255
+ # binding.pry
256
+ template.klass = klass
257
+
258
+ layout.contents = template
259
+ layout.rel_prefix = self.output_dir.relative_path_from( out_file.dirname )
260
+ layout.pageclass = 'class-page'
261
+
262
+ out_file.open( 'w', 0644 ) {|io| io.print(layout.render) }
263
+ end
264
+ end
265
+
266
+
267
+ ### Generate a documentation file for each file
268
+ def generate_file_files
269
+ layout = self.load_layout_template
270
+ template = self.load_template( 'file.tmpl' )
271
+
272
+ debug_msg "Generating file documentation in #{self.output_dir}"
273
+
274
+ @files.each do |file|
275
+ out_file = self.output_dir + file.path
276
+ out_file.dirname.mkpath
277
+
278
+ debug_msg " working on %s (%s)" % [file.full_name, out_file]
279
+
280
+ template.file = file
281
+
282
+ layout.contents = template
283
+ layout.rel_prefix = self.output_dir.relative_path_from(out_file.dirname)
284
+ layout.pageclass = 'file-page'
285
+
286
+ out_file.open( 'w', 0644 ) {|io| io.print(layout.render) }
287
+ end
288
+ end
289
+
290
+ end # class RDoc::Generator::Fivefish
291
+
292
+
data.tar.gz.sig ADDED
@@ -0,0 +1,3 @@
1
+ d
2
+ Z�R��Oe���k$�H-�׊����h�xZlҼ��^׬�,q�RH�#S���]���}2z������������
3
+ 2�U��ˈ�>��"eR;r����z�Qcq��y�ڭ3
metadata ADDED
@@ -0,0 +1,174 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rdoc-generator-fivefish
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre16
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Michael Granger
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain:
12
+ - !binary |-
13
+ LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURMRENDQWhTZ0F3SUJB
14
+ Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREE4TVF3d0NnWURWUVFEREFOblpX
15
+ UXgKRnpBVkJnb0praWFKay9Jc1pBRVpGZ2RmWVdWeWFXVmZNUk13RVFZS0Na
16
+ SW1pWlB5TEdRQkdSWURiM0puTUI0WApEVEV3TURreE5qRTBORGcxTVZvWERU
17
+ RXhNRGt4TmpFME5EZzFNVm93UERFTU1Bb0dBMVVFQXd3RFoyVmtNUmN3CkZR
18
+ WUtDWkltaVpQeUxHUUJHUllIWDJGbGNtbGxYekVUTUJFR0NnbVNKb21UOGl4
19
+ a0FSa1dBMjl5WnpDQ0FTSXcKRFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURD
20
+ Q0FRb0NnZ0VCQUx5Ly9CRnhDMWYvY1BTbnd0SkJXb0ZpRnJpcgpoN1JpY0kr
21
+ am9xL29jVlhRcUk0VERXUHlGLzh0cWt2dCtyRDk5WDlxczJZZVI4Q1UvWWlJ
22
+ cExXclFPWVNUNzBKCnZEbjdVdmhiMm11RlZxcTYrdm9iZVRrSUxCRU82cGlv
23
+ bldERzhqU2JvM3FLbTFSaktKRHdnOXA0d05LaFB1dTgKS0d1ZS9CRmI2N0tm
24
+ bHF5QXBQbVBlYjNWZGQ5Y2xzcHpxZUZxcDdjVUJNRXBGUzZMV3h5NEdrK3F2
25
+ RkZKQkpMQgpCVUhFL0xaVkpNVnpmcEM1VXErUW1ZN0IrRkgvUXFObmRuM3RP
26
+ SGdzUGFkTFROaW11QjFzQ3VMMWE0ejNQZXBkClRlTEJFRm1FYW81RGszSy9R
27
+ OG84dmxiSUIvakJEVFV4NkRqYmd4dzc3OTA5eDZnSTlkb1U0TEQ1WE1jQ0F3
28
+ RUEKQWFNNU1EY3dDUVlEVlIwVEJBSXdBREFMQmdOVkhROEVCQU1DQkxBd0hR
29
+ WURWUjBPQkJZRUZKZW9Ha09yOWw0Qgorc2FNa1cvWlhUNFVlU3ZWTUEwR0NT
30
+ cUdTSWIzRFFFQkJRVUFBNElCQVFCRzJLT2J2WUkyZUh5eUJVSlNKM2pOCnZF
31
+ blUzZDYwem5BWGJyU2QycWIzcjFsWTFFUEREM2JjeTBNZ2dDZkdkZzNYdTU0
32
+ ejIxb3F5SWRrOHVHdFdCUEwKSElhOUVnZkZHU1VFZ3ZjSXZhWXFpTjRqVFV0
33
+ aWRmRUZ3K0x0anM4QVA5Z1dnU0lZUzZHcjM4VjBXR0ZGTnpJSAphT0Qyd211
34
+ OW9vL1JmZlc0aFMvOEd1dmZNemN3N0NRMzU1d0ZSNEtCL255emUrRXNaMVk1
35
+ RGVyQ0FhZ01WdURRClUwQkxtV0RGelBHR1dsUGVRQ3JZSENyK0FjSnorTlJu
36
+ YUhDS0xaZFNLai9SSHVUT3QrZ2JsUmV4OEZBaDhOZUEKY21saFhlNDZwWk5K
37
+ Z1dLYnhaYWg4NWpJang5NWhSOHZPSStOQU01aUg5a09xSzEzRHJ4YWNUS1Bo
38
+ cWo1UGp3RgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
39
+ date: 2012-03-16 00:00:00.000000000 Z
40
+ dependencies:
41
+ - !ruby/object:Gem::Dependency
42
+ name: inversion
43
+ requirement: &70188120731860 !ruby/object:Gem::Requirement
44
+ none: false
45
+ requirements:
46
+ - - ~>
47
+ - !ruby/object:Gem::Version
48
+ version: '0.5'
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: *70188120731860
52
+ - !ruby/object:Gem::Dependency
53
+ name: rdoc
54
+ requirement: &70188120730480 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ~>
58
+ - !ruby/object:Gem::Version
59
+ version: '3.12'
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: *70188120730480
63
+ - !ruby/object:Gem::Dependency
64
+ name: hoe-mercurial
65
+ requirement: &70188120729620 !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ~>
69
+ - !ruby/object:Gem::Version
70
+ version: 1.3.1
71
+ type: :development
72
+ prerelease: false
73
+ version_requirements: *70188120729620
74
+ - !ruby/object:Gem::Dependency
75
+ name: hoe-highline
76
+ requirement: &70188120744940 !ruby/object:Gem::Requirement
77
+ none: false
78
+ requirements:
79
+ - - ~>
80
+ - !ruby/object:Gem::Version
81
+ version: 0.0.1
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: *70188120744940
85
+ - !ruby/object:Gem::Dependency
86
+ name: hoe
87
+ requirement: &70188120743300 !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ~>
91
+ - !ruby/object:Gem::Version
92
+ version: '2.16'
93
+ type: :development
94
+ prerelease: false
95
+ version_requirements: *70188120743300
96
+ description: ! 'A(nother) HTML(5) generator for RDoc.
97
+
98
+
99
+ The goals for this one:
100
+
101
+
102
+ * Update Darkfish''s semantic structure for HTML5
103
+
104
+ * Clean up the layout with a 960 grid
105
+
106
+ * Devote more real estate to docs rather than the index
107
+
108
+ * Demonstrate themability of RDoc in general via the --stylesheet option
109
+
110
+ * Make the output validate again.'
111
+ email:
112
+ - ged@FaerieMUD.org
113
+ executables: []
114
+ extensions: []
115
+ extra_rdoc_files:
116
+ - History.rdoc
117
+ - Manifest.txt
118
+ - README.rdoc
119
+ files:
120
+ - .autotest
121
+ - History.rdoc
122
+ - Manifest.txt
123
+ - README.rdoc
124
+ - Rakefile
125
+ - data/rdoc-generator-fivefish/css/bootstrap-responsive.min.css
126
+ - data/rdoc-generator-fivefish/css/bootstrap.min.css
127
+ - data/rdoc-generator-fivefish/css/fivefish.css
128
+ - data/rdoc-generator-fivefish/fonts/IstokWeb-Bold.woff
129
+ - data/rdoc-generator-fivefish/fonts/IstokWeb-BoldItalic.woff
130
+ - data/rdoc-generator-fivefish/fonts/IstokWeb-Italic.woff
131
+ - data/rdoc-generator-fivefish/fonts/IstokWeb-Regular.woff
132
+ - data/rdoc-generator-fivefish/fonts/OFL.txt
133
+ - data/rdoc-generator-fivefish/img/glyphicons-halflings-white.png
134
+ - data/rdoc-generator-fivefish/img/glyphicons-halflings.png
135
+ - data/rdoc-generator-fivefish/js/bootstrap.min.js
136
+ - data/rdoc-generator-fivefish/js/fivefish.js
137
+ - data/rdoc-generator-fivefish/js/jquery-1.7.1.min.js
138
+ - data/rdoc-generator-fivefish/prototype-classpage.html
139
+ - data/rdoc-generator-fivefish/prototype.html
140
+ - data/rdoc-generator-fivefish/templates/class.tmpl
141
+ - data/rdoc-generator-fivefish/templates/file.tmpl
142
+ - data/rdoc-generator-fivefish/templates/index.tmpl
143
+ - data/rdoc-generator-fivefish/templates/layout.tmpl
144
+ - lib/fivefish.rb
145
+ - lib/rdoc/discover.rb
146
+ - lib/rdoc/generator/fivefish.rb
147
+ homepage: http://deveiate.org/fivefish.html
148
+ licenses:
149
+ - BSD
150
+ post_install_message:
151
+ rdoc_options:
152
+ - --main
153
+ - README.rdoc
154
+ require_paths:
155
+ - lib
156
+ required_ruby_version: !ruby/object:Gem::Requirement
157
+ none: false
158
+ requirements:
159
+ - - ! '>='
160
+ - !ruby/object:Gem::Version
161
+ version: 1.9.3
162
+ required_rubygems_version: !ruby/object:Gem::Requirement
163
+ none: false
164
+ requirements:
165
+ - - ! '>='
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ requirements: []
169
+ rubyforge_project: rdoc-generator-fivefish
170
+ rubygems_version: 1.8.16
171
+ signing_key:
172
+ specification_version: 3
173
+ summary: A(nother) HTML(5) generator for RDoc
174
+ test_files: []
metadata.gz.sig ADDED
@@ -0,0 +1,3 @@
1
+ V��
2
+ �?
3
+ �Ào�L�g�z�h�^�T�뼳*�B^h�sz&���mzl��[@fH������ހ��&y-vV��1JH7j����R3�kJ�n�.���7���Z���df~�jvr���ݸ�]2� %�!QD[w[2Г�_V��2m��w5��>�T:3��P������Y���#5�����;!ƅl���_�|JRt㳣��aOF�3�0��P�rs,*|HN��..����I�[Ȣ}��IH{SCk�&���3|)�,:S��]��