Skip to content

Commit

Permalink
doc: stop using deprecated rdoc CLI options
Browse files Browse the repository at this point in the history
-N and -a switches no longer exist in rdoc 2.5
(cherry picked from commit 054c7df)
  • Loading branch information
Eric Wong committed Oct 27, 2010
1 parent 427862f commit 7207a8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ atom = <link rel="alternate" title="Atom feed" href="$(1)" \
doc: .document $(ext)/unicorn_http.c NEWS ChangeLog
for i in $(man1_rdoc); do echo > $$i; done
find bin lib -type f -name '*.rbc' -exec rm -f '{}' ';'
rdoc -a -t "$(shell sed -ne '1s/^= //p' README)"
rdoc -t "$(shell sed -ne '1s/^= //p' README)"
install -m644 COPYING doc/COPYING
install -m644 $(shell grep '^[A-Z]' .document) doc/
$(MAKE) -C Documentation install-html install-man
Expand Down
2 changes: 1 addition & 1 deletion unicorn.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |s|
s.homepage = %q{http://unicorn.bogomips.org/}

summary = %q{Rack HTTP server for fast clients and Unix}
s.rdoc_options = [ "-Na", "-t", "Unicorn: #{summary}" ]
s.rdoc_options = [ "-t", "Unicorn: #{summary}" ]
s.require_paths = %w(lib ext)
s.rubyforge_project = %q{mongrel}
s.summary = summary
Expand Down

0 comments on commit 7207a8c

Please sign in to comment.