diff options
-rw-r--r-- | bin/coderay | 2 | ||||
-rw-r--r-- | etc/coderay-lib.tmproj | 16 | ||||
-rw-r--r-- | lib/README | 2 | ||||
-rw-r--r-- | rake_tasks/documentation.rake | 2 |
4 files changed, 9 insertions, 13 deletions
diff --git a/bin/coderay b/bin/coderay index 61841b7..82d4eca 100644 --- a/bin/coderay +++ b/bin/coderay @@ -13,7 +13,7 @@ begin if ARGV.empty?
puts <<-USAGE
-CodeRay #{CodeRay::VERSION} (http://rd.cYcnus.de/coderay)
+CodeRay #{CodeRay::VERSION} (http://coderay.rubychan.de)
Usage:
coderay -<lang> [-<format>] < file > output
coderay file [-<format>]
diff --git a/etc/coderay-lib.tmproj b/etc/coderay-lib.tmproj index fe383fe..0d95d42 100644 --- a/etc/coderay-lib.tmproj +++ b/etc/coderay-lib.tmproj @@ -67,6 +67,8 @@ <string>../pkg</string> </dict> <dict> + <key>expanded</key> + <true/> <key>name</key> <string>rake_helpers</string> <key>regexFolderFilter</key> @@ -88,21 +90,15 @@ <key>filename</key> <string>../Rakefile</string> <key>lastUsed</key> - <date>2009-01-04T15:18:23Z</date> + <date>2009-01-08T15:37:13Z</date> <key>selected</key> <true/> </dict> <dict> <key>filename</key> - <string>../README</string> - <key>lastUsed</key> - <date>2009-01-01T16:43:20Z</date> - </dict> - <dict> - <key>filename</key> <string>../diff</string> <key>lastUsed</key> - <date>2009-01-01T16:43:19Z</date> + <date>2009-01-11T11:46:17Z</date> </dict> <dict> <key>filename</key> @@ -122,7 +118,7 @@ <key>filename</key> <string>../test/scanners/coderay_suite.rb</string> <key>lastUsed</key> - <date>2009-01-01T13:28:43Z</date> + <date>2009-01-11T04:30:16Z</date> </dict> <dict> <key>filename</key> @@ -134,7 +130,7 @@ <key>filename</key> <string>../bench/bench.rb</string> <key>lastUsed</key> - <date>2008-12-25T02:42:18Z</date> + <date>2009-01-11T04:09:18Z</date> </dict> </array> <key>fileHierarchyDrawerWidth</key> @@ -1,7 +1,7 @@ = CodeRay [- Tired of blue'n'gray? Try the original version of this documentation on -http://rd.cYcnus.de/coderay/doc (use Ctrl+Click to open it in its own frame.) -] +coderay.rubychan.de[http://coderay.rubychan.de/doc/] (use Ctrl+Click to open it in its own frame.) -] == About CodeRay is a Ruby library for syntax highlighting. diff --git a/rake_tasks/documentation.rake b/rake_tasks/documentation.rake index ff65ec3..bc72f7b 100644 --- a/rake_tasks/documentation.rake +++ b/rake_tasks/documentation.rake @@ -4,7 +4,7 @@ require 'pathname' CODERAY_TEMPLATE = Pathname.new(File.dirname(__FILE__)).join('..', 'rake_helpers', 'coderay_rdoc_template.rb').expand_path.to_s
def set_rdoc_info rd
- rd.main = 'README'
+ rd.main = 'lib/README'
rd.title = "CodeRay Documentation"
rd.options << '--line-numbers' << '--inline-source' << '--tab-width' << '2'
# rd.options << '--format' << ENV.fetch('format', 'html_coderay')
|