Class: ZabbixRubyClient::Cli

Inherits:
Thor
  • Object
show all
Includes:
Thor::Actions
Defined in:
lib/zabbix-ruby-client/cli.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.source_rootObject



9
10
11
# File 'lib/zabbix-ruby-client/cli.rb', line 9

def self.source_root
  File.expand_path("../../../templates", __FILE__)
end

Instance Method Details

#init(name = "zabbix-ruby-client") ⇒ Object



26
27
28
# File 'lib/zabbix-ruby-client/cli.rb', line 26

def init(name = "zabbix-ruby-client")
  directory "client", name
end

#showObject



31
32
33
34
35
36
37
38
39
40
41
# File 'lib/zabbix-ruby-client/cli.rb', line 31

def show
  begin
    Bundler.require
  rescue Bundler::GemfileNotFound
    say "No Gemfile found", :red
    abort
  end
  zrc = ZabbixRubyClient.new(options[:configfile],options[:taskfile])
  zrc.collect
  zrc.show
end

#uploadObject



44
45
46
47
48
# File 'lib/zabbix-ruby-client/cli.rb', line 44

def upload
  zrc = ZabbixRubyClient.new(options[:configfile],options[:taskfile])
  zrc.collect
  zrc.upload
end