Class: Xively::Command::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/xively-cli/command/base.rb

Direct Known Subclasses

Feeds, Help, Subscribe, Version

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = [], options = {}) ⇒ Base

Returns a new instance of Base.



13
14
15
16
# File 'lib/xively-cli/command/base.rb', line 13

def initialize(args=[], options={})
  @args = args
  @options = options
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



10
11
12
# File 'lib/xively-cli/command/base.rb', line 10

def args
  @args
end

#optionsObject (readonly)

Returns the value of attribute options.



11
12
13
# File 'lib/xively-cli/command/base.rb', line 11

def options
  @options
end

Class Method Details

.namespaceObject



6
7
8
# File 'lib/xively-cli/command/base.rb', line 6

def self.namespace
  self.to_s.split("::").last.downcase
end