diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-03 15:40:20 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-03 15:40:20 +0000 |
| commit | db89a8eb84fb370befe99999c9ce4bddcf6616e7 (patch) | |
| tree | 749f3946d4c39b86ba0e76490e13b495cba98693 /lib/rake/contrib/rubyforgepublisher.rb | |
| parent | f6c31e8131079095a78a4bc0a4026b6c1ad23b58 (diff) | |
| download | ruby-db89a8eb84fb370befe99999c9ce4bddcf6616e7.tar.gz ruby-db89a8eb84fb370befe99999c9ce4bddcf6616e7.tar.xz ruby-db89a8eb84fb370befe99999c9ce4bddcf6616e7.zip | |
* lib/rake/contrib: added. [ruby-core:25918]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rake/contrib/rubyforgepublisher.rb')
| -rw-r--r-- | lib/rake/contrib/rubyforgepublisher.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/rake/contrib/rubyforgepublisher.rb b/lib/rake/contrib/rubyforgepublisher.rb new file mode 100644 index 000000000..a4b96936c --- /dev/null +++ b/lib/rake/contrib/rubyforgepublisher.rb @@ -0,0 +1,16 @@ +require 'rake/contrib/sshpublisher' + +module Rake + + class RubyForgePublisher < SshDirPublisher + attr_reader :project, :proj_id, :user + + def initialize(projname, user) + super( + "#{user}@rubyforge.org", + "/var/www/gforge-projects/#{projname}", + "html") + end + end + +end |
