File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -270,6 +270,16 @@ bundle exec rake docs
270270cp -r docs $DEVDOCS /docs/minitest
271271```
272272
273+ ### Ruby / Rack
274+
275+ ``` sh
276+ git clone https://github.com/rack/rack
277+ cd rack/
278+ bundle install
279+ bundle exec rdoc
280+ cp -r doc $DEVDOCS /docs/rack
281+ ```
282+
273283### Ruby on Rails
274284* Run ` git clone --branch v$RELEASE --depth 7 https://github.com/rails/rails.git && cd rails `
275285* Open ` railties/lib/rails/api/task.rb ` and comment out any code related to sdoc (` configure_sdoc ` )
Original file line number Diff line number Diff line change 1+ module Docs
2+ class Rack < Rdoc
3+
4+ self . name = 'Ruby / Rack'
5+ self . slug = 'rack'
6+ self . release = '3.2.4'
7+ self . links = {
8+ home : 'https://rack.github.io/rack/3.2/index.html' ,
9+ code : 'https://github.com/rack/rack'
10+ }
11+ self . root_path = 'Rack.html'
12+
13+ options [ :root_title ] = 'Rack'
14+
15+ options [ :attribution ] = <<-HTML
16+ © 2007-2021 Leah Neukirchen< br >
17+ Licensed under the MIT License.
18+ HTML
19+
20+ def get_latest_version ( opts )
21+ get_latest_github_release ( 'rack' , 'rack' , opts )
22+ end
23+ end
24+ end
Original file line number Diff line number Diff line change 1+ https://github.com/rack/rack/blob/main/contrib/logo.webp
You can’t perform that action at this time.
0 commit comments