Class: Spacialdb::Command::Base

Inherits:
Object
  • Object
show all
Includes:
Helpers
Defined in:
lib/spacialdb/command/base.rb

Direct Known Subclasses

Auth, Db, Help, Layers, Version

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Helpers

#ask, #confirm_command, #display, #echo_off, #echo_on, #error, #home_directory, #json_decode, #json_encode, #longest, #redisplay

Constructor Details

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

Returns a new instance of Base.



15
16
17
18
# File 'lib/spacialdb/command/base.rb', line 15

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

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



12
13
14
# File 'lib/spacialdb/command/base.rb', line 12

def args
  @args
end

#optionsObject (readonly)

Returns the value of attribute options.



13
14
15
# File 'lib/spacialdb/command/base.rb', line 13

def options
  @options
end

Class Method Details

.namespaceObject



8
9
10
# File 'lib/spacialdb/command/base.rb', line 8

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

Instance Method Details

#spacialdbObject



20
21
22
# File 'lib/spacialdb/command/base.rb', line 20

def spacialdb
  Spacialdb::Auth.client
end