Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

Commit

Permalink
* Added .rdoc prefix to all text files to let GitHub detect the right…
Browse files Browse the repository at this point in the history
… language
  • Loading branch information
weppos committed Jul 3, 2008
1 parent 6fac57b commit c467666
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -13,7 +13,7 @@ PKG_VERSION = ENV['PKG_VERSION'] || WWW::Delicious::VERSION
PKG_SUMMARY = "Ruby client for del.icio.us API."
PKG_FILES = FileList.new("{lib,test}/**/*.rb") do |fl|
fl.exclude 'TODO'
fl.include %w(README.rdoc README CHANGELOG MIT-LICENSE)
fl.include %w(README.rdoc CHANGELOG.rdoc MIT-LICENSE.rdoc)
fl.include %w(Rakefile setup.rb)
end
RUBYFORGE_PROJECT = 'www-delicious'
Expand Down Expand Up @@ -45,11 +45,11 @@ desc "Generate RDoc documentation"
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "#{PKG_NAME} -- #{PKG_SUMMARY}"
rdoc.main = "README"
rdoc.main = "README.rdoc"
rdoc.options << "--inline-source" << "--line-numbers"
rdoc.options << '--charset' << 'utf-8'
rdoc.options << '--force-update'
rdoc.rdoc_files.include("README.rdoc", "README", "CHANGELOG", "MIT-LICENSE")
rdoc.rdoc_files.include("README.rdoc", "CHANGELOG.rdoc", "MIT-LICENSE.rdoc")
rdoc.rdoc_files.include("lib/**/*.rb")
end

Expand Down

0 comments on commit c467666

Please sign in to comment.