Class: PostmonCli::Wrapper

Inherits:
Object
  • Object
show all
Defined in:
lib/postmon_cli/wrapper.rb

Class Method Summary collapse

Class Method Details

.cep(cep) ⇒ Object



5
6
7
8
# File 'lib/postmon_cli/wrapper.rb', line 5

def self.cep(cep)
  resultado = PostmonRuby::Client.search :cep, cep
  Output.resultado(resultado)
end

.cidade(uf, cidade) ⇒ Object



10
11
12
13
# File 'lib/postmon_cli/wrapper.rb', line 10

def self.cidade(uf, cidade)
  resultado = PostmonRuby::Client.search :cidade, uf, cidade
  Output.resultado(resultado)
end

.estado(uf) ⇒ Object



15
16
17
18
# File 'lib/postmon_cli/wrapper.rb', line 15

def self.estado(uf)
  resultado = PostmonRuby::Client.search :estado, uf
  Output.resultado(resultado)
end

.rastreio(rastreio) ⇒ Object



20
21
22
23
# File 'lib/postmon_cli/wrapper.rb', line 20

def self.rastreio(rastreio)
  resultado = PostmonRuby::Client.search :rastreio, :ect, rastreio
  Output.resultado(resultado)
end