Class: Rake::RubyForgePublisher

Inherits:
SshDirPublisher show all
Defined in:
lib/rake/contrib/rubyforgepublisher.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from SshDirPublisher

#upload

Constructor Details

#initialize(projname, user) ⇒ RubyForgePublisher

Returns a new instance of RubyForgePublisher.



10
11
12
13
14
15
# File 'lib/rake/contrib/rubyforgepublisher.rb', line 10

def initialize(projname, user)
  super(
	"#{user}@rubyforge.org",
	"/var/www/gforge-projects/#{projname}",
	"html")
end

Instance Attribute Details

#proj_idObject (readonly)

Returns the value of attribute proj_id.



8
9
10
# File 'lib/rake/contrib/rubyforgepublisher.rb', line 8

def proj_id
  @proj_id
end

#projectObject (readonly)

Returns the value of attribute project.



8
9
10
# File 'lib/rake/contrib/rubyforgepublisher.rb', line 8

def project
  @project
end

#userObject (readonly)

Returns the value of attribute user.



8
9
10
# File 'lib/rake/contrib/rubyforgepublisher.rb', line 8

def user
  @user
end