Class: Gem::Commands::SboxCommand::Multipart::Param

Inherits:
Object
  • Object
show all
Defined in:
lib/rubygems/commands/sbox_command.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(k, v) ⇒ Param

Returns a new instance of Param.



122
123
124
125
# File 'lib/rubygems/commands/sbox_command.rb', line 122

def initialize( k, v )
  @k = k
  @v = v
end

Instance Attribute Details

#kObject

Returns the value of attribute k.



121
122
123
# File 'lib/rubygems/commands/sbox_command.rb', line 121

def k
  @k
end

#vObject

Returns the value of attribute v.



121
122
123
# File 'lib/rubygems/commands/sbox_command.rb', line 121

def v
  @v
end

Instance Method Details

#to_multipartObject



127
128
129
# File 'lib/rubygems/commands/sbox_command.rb', line 127

def to_multipart
  return "Content-Disposition: form-data; name=\"#{k}\"\r\n\r\n#{v}\r\n"
end