Skip to content

Commit

Permalink
Remove RubyForge links.
Browse files Browse the repository at this point in the history
Changed API docs to go to onestepback.org/software/rake

Conflicts:
	README.rdoc
	rakelib/publish.rake
  • Loading branch information
jimweirich committed Dec 20, 2013
1 parent a3e5c2c commit 4f139fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ Issues and bug reports can also be tracked here:
=== Rake References

* Rake Documentation Home: http://docs.rubyrake.org
* Rake Project Page: http://rubyforge.org/projects/rake
* Rake API Documents: http://rake.rubyforge.org
* Rake Project Page: http://github.com/jimweirich/rake
* Rake API Documents: http://onestepback.org/software/rake/
* Rake Source Code Repo: http://github.com/jimweirich/rake
* Rake Git Repo Clone URL: git://github.com/jimweirich/rake.git
* Rake Bug Reports: https://github.com/jimweirich/rake/issues
Expand All @@ -138,7 +138,7 @@ other projects with similar (and not so similar) goals.
* http://ppt.perl.org/commands/make/index.html -- Make from the Perl
Power Tools implementation.
* http://search.cpan.org/search?query=PerlBuildSystem -- The Perl Build System
* http://make.rubyforge.org -- Rant, another Ruby make tool.
* http://rubydoc.info/gems/rant/0.5.7/frames -- Rant, another Ruby make tool.

== Credits

Expand All @@ -158,8 +158,8 @@ Rake is available under an MIT-style license.

== Support

The Rake homepage is http://rake.rubyforge.org. You can find the Rake
RubyForge page at http://rubyforge.org/projects/rake.
The Rake homepage is http://onestepback.org/software/rake/. You can find the Rake
GitHub page at http://github.com/jimweirich/rake.

Feel free to submit commits or feature requests. If you send a patch,
remember to update the corresponding unit tests. In fact, I prefer
Expand Down
10 changes: 4 additions & 6 deletions rakelib/publish.rake
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@ begin
require 'rake/contrib/sshpublisher'
require 'rake/contrib/rubyforgepublisher'

publisher = Rake::CompositePublisher.new
publisher.add Rake::RubyForgePublisher.new('rake', 'jimweirich')
publisher.add Rake::SshFilePublisher.new(
'umlcoop',
publisher = Rake::SshDirPublisher.new(
'linode',
'htdocs/software/rake',
'.',
'rake.blurb')
'html')

desc "Publish the Documentation to RubyForge."
task :publish => [:rdoc] do
publisher.upload
end

rescue LoadError => ex
puts "#{ex.message} (#{ex.class})"
puts "No Publisher Task Available"
Expand Down

0 comments on commit 4f139fa

Please sign in to comment.