Class: Rapuncel::Request
- Inherits:
-
Object
- Object
- Rapuncel::Request
- Defined in:
- lib/rapuncel/request.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#method_name ⇒ Object
Returns the value of attribute method_name.
Instance Method Summary collapse
-
#initialize(method_name, *args) ⇒ Request
constructor
Create a new XML-RPC request.
Constructor Details
#initialize(method_name, *args) ⇒ Request
Create a new XML-RPC request
6 7 8 |
# File 'lib/rapuncel/request.rb', line 6 def initialize method_name, *args @method_name, @arguments = method_name, args end |
Instance Attribute Details
#arguments ⇒ Object
Returns the value of attribute arguments.
3 4 5 |
# File 'lib/rapuncel/request.rb', line 3 def arguments @arguments end |
#method_name ⇒ Object
Returns the value of attribute method_name.
3 4 5 |
# File 'lib/rapuncel/request.rb', line 3 def method_name @method_name end |