postmon_cli 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e5f8c80d8805617ff5056b3d998adbab95fc7f5
4
- data.tar.gz: 2c2c1b7241902477712df1fd5e39b47dddd66d5f
3
+ metadata.gz: ee7422a4ae88f2349ff955f8bd92a3d6ed005902
4
+ data.tar.gz: 5358885130b773dbf9dfd4e26ceb93121ecb9f28
5
5
  SHA512:
6
- metadata.gz: 8063961140eaff75048b9f7ff7a3ecc887e96e3c8a0737e00aa3ac7a790bd74dca49b019b8f83fba88637bbc47563ac2c150a724b70ed6594b9fb9355b865d1d
7
- data.tar.gz: 40be2bd4c2bbf3fe48fec5dfb699e9f6b51491e3460ec6c9287537ad7e3a9dcd5201761b53c2b0609df2dfd2dd64b135d6279806ba59d6726822a2b2889fa5fc
6
+ metadata.gz: e660206a65d6ae586d509b682bcba42da011b373fe9d324e67c611144fb879d0eb06f958872ea2f9815c78e6a8c656f69a8436cfd7dc13d9e56a17f021623434
7
+ data.tar.gz: 1741b2d3b0c75ffb6fcc063fd2de02c1be29f1c1e76e56d043ab5ac20a57e7d3b24804c20e098df9fb965452d2fdcbd382ed418f856ed63c64a9bc2e89e47960
data/README.md CHANGED
@@ -1,29 +1,70 @@
1
- # PostmonCli
1
+ # PostmonCli [![Build Status](https://travis-ci.org/PostmonAPI/postmon-cli.svg?branch=master)](https://travis-ci.org/PostmonAPI/postmon-cli) [![Code Climate](https://codeclimate.com/github/PostmonAPI/postmon-cli.png)](https://codeclimate.com/github/PostmonAPI/postmon-cli)
2
2
 
3
- TODO: Write a gem description
3
+ Consulte informações como CEP, dados de estados e cidades ou acompanhe o seu pedido enviado
4
+ pelos correios, tudo pelo bash :)
4
5
 
5
- ## Installation
6
+ ## Instalação
6
7
 
7
- Add this line to your application's Gemfile:
8
+ $ gem install postmon_cli
8
9
 
9
- gem 'postmon_cli'
10
+ ## Uso
11
+ #### Consultar pelo CEP:
10
12
 
11
- And then execute:
13
+ $ postmon cep 49015040
12
14
 
13
- $ bundle
15
+ Complemento: lado ímpar
16
+ Bairro: São José
17
+ Cidade: Aracaju
18
+ Logradouro: Avenida Barão de Maruim
19
+ Estado: SE
20
+ Cep: 49015040
14
21
 
15
- Or install it yourself as:
22
+ #### Consultar informações de uma cidade:
16
23
 
17
- $ gem install postmon_cli
24
+ $ postmon cidade SE Aracaju
25
+
26
+ Area_km2: 181,857
27
+ Codigo_ibge: 2800308
28
+
29
+ #### Consultar informações de um estado:
30
+
31
+ $ postmon estado SE
32
+
33
+ Area_km2: 21.915,116
34
+ Codigo_ibge: 28
35
+ Nome: Sergipe
36
+
37
+ #### Consultar informações de rastreio de um pacote:
38
+
39
+ $ postmon rastreio RF223325059SG
40
+
41
+ Codigo: RF223325059SG
42
+ Servico: ect
43
+ detalhes: Em trвnsito para UNIDADE DE TRATAMENTO INTERNACIONAL - BRASIL
44
+ local: CINGAPURA
45
+ data: 11/04/2014 14:04
46
+ situacao: Encaminhado
47
+
48
+ #### Menu de opções:
49
+
50
+ $ postmon
51
+
52
+ Usage: postmon <command> [value]
53
+
54
+ Commands:
55
+ cep Consultar CEP
56
+ ex: postmon cep 49015040
57
+
58
+ cidade Consultar informações de uma cidade
59
+ ex: postmon cidade SE Aracaju
18
60
 
19
- ## Usage
61
+ estado Consultar informações de um estado
62
+ ex: postmon estado SE
20
63
 
21
- TODO: Write usage instructions here
64
+ rastreio Consultar informações de rastreio de um pacote
65
+ ex: postmon rastreio AA987654321BR
22
66
 
23
- ## Contributing
67
+ ## Contribua
24
68
 
25
- 1. Fork it ( http://github.com/<my-github-username>/postmon_cli/fork )
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
69
+ O PostmonCli utiliza o PostmonAPI para Ruby, a gem PostmonRuby(https://github.com/PostmonAPI/postmon-ruby).
70
+ Todo tipo de contribuição é sempre bem-vinda(a). :wink:
data/bin/postmon CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
 
3
4
  require 'postmon_cli'
4
5
 
@@ -1,3 +1,3 @@
1
1
  module PostmonCli
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/test/test_helper.rb CHANGED
@@ -1,4 +1 @@
1
1
  require 'minitest/autorun'
2
- require 'minitest/reporters'
3
-
4
- Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: postmon_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Breno Moura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-06 00:00:00.000000000 Z
11
+ date: 2014-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: postmon_ruby
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 2.1.3
19
+ version: 3.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 2.1.3
26
+ version: 3.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -60,16 +60,11 @@ executables:
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
- - ".gitignore"
64
- - Gemfile
65
- - LICENSE.txt
66
63
  - README.md
67
- - Rakefile
68
64
  - bin/postmon
69
65
  - lib/postmon_cli.rb
70
66
  - lib/postmon_cli/version.rb
71
67
  - lib/postmon_cli/wrapper.rb
72
- - postmon_cli.gemspec
73
68
  - test/lib/wrapper_test.rb
74
69
  - test/test_helper.rb
75
70
  homepage: https://github.com/PostmonAPI/postmon-cli
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in postmon_cli.gemspec
4
- gemspec
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2014 Breno Moura
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
data/postmon_cli.gemspec DELETED
@@ -1,24 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'postmon_cli/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "postmon_cli"
8
- spec.version = PostmonCli::VERSION
9
- spec.authors = ["Breno Moura"]
10
- spec.email = ["basmoura@gmail.com"]
11
- spec.summary = %q{CLI for Postmon API}
12
- spec.description = %q{Postmon API in your bash}
13
- spec.homepage = "https://github.com/PostmonAPI/postmon-cli"
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_dependency "postmon_ruby", "~> 2.1.3"
22
- spec.add_development_dependency "bundler", "~> 1.5"
23
- spec.add_development_dependency "rake"
24
- end