Class: Ixtlan::Remote::Server::Meta

Inherits:
Object
  • Object
show all
Defined in:
lib/ixtlan/remote/server.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(new_method, path = nil) ⇒ Meta

Returns a new instance of Meta.



65
66
67
68
# File 'lib/ixtlan/remote/server.rb', line 65

def initialize( new_method, path = nil )
  @new_method = new_method
  @path = path.to_s if path
end

Instance Attribute Details

#new_methodObject (readonly)

Returns the value of attribute new_method.



63
64
65
# File 'lib/ixtlan/remote/server.rb', line 63

def new_method
  @new_method
end

#pathObject (readonly)

Returns the value of attribute path.



63
64
65
# File 'lib/ixtlan/remote/server.rb', line 63

def path
  @path
end