nfe-io 0.2.4 → 0.2.5
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 +4 -4
- data/README.md +24 -1
- data/lib/nfe.rb +1 -1
- data/lib/nfe/configuration.rb +8 -0
- data/lib/nfe/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca87b5dcc40d9731b77114fb38f73680a26f85d5
|
|
4
|
+
data.tar.gz: b38d619dbc26ccff7cb8e44c79407bb5a09a7ff9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3539cd808e0137bdda3abdae152fe29373a196207d4bb2bb2bf7b5bea85aa3e349129dd394d0124a5ad5f8d0788470c5ba9754e0e772be8fd6dbb1b2cb26278e
|
|
7
|
+
data.tar.gz: 9cc619dad566bd9cb8b700554d5ffe60f5cd3179cd18412c47719104ba1215d4f692cc9e4d39577da82b174d833763f79c28a428133fd6536cd5928ab2ecb8d9
|
data/README.md
CHANGED
|
@@ -64,11 +64,34 @@ invoice_create_result = Nfe::ServiceInvoice.create(customer_params.merge(service
|
|
|
64
64
|
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
-
|
|
68
67
|
## Contribuir
|
|
69
68
|
|
|
70
69
|
Envio de bugs e pull requests são muito bem vindos no https://github.com/nfe/client-ruby.
|
|
71
70
|
|
|
71
|
+
### Como atualizar o pacote
|
|
72
|
+
|
|
73
|
+
- Alterar versão do pacote no arquivo /lib/nfe/version.rb
|
|
74
|
+
- Comitar nova versão, com uma descrição como abaixo
|
|
75
|
+
```bash
|
|
76
|
+
git add lib/nfe/version.rb
|
|
77
|
+
git commit -m'Bump version 0.2.4'
|
|
78
|
+
```
|
|
79
|
+
- Criar git tag
|
|
80
|
+
```bash
|
|
81
|
+
git tag 0.2.4
|
|
82
|
+
```
|
|
83
|
+
- Executar gem build
|
|
84
|
+
```bash
|
|
85
|
+
gem build nfe.gemspec
|
|
86
|
+
```
|
|
87
|
+
- Executar gem build, repare que um novo arquivo será criado, com a versão do pacote alterada acima
|
|
88
|
+
```bash
|
|
89
|
+
gem build nfe.gemspec
|
|
90
|
+
```
|
|
91
|
+
- Executar gem push do pacote gem criado
|
|
92
|
+
```ruby
|
|
93
|
+
gem push nfe-io-0.2.4.gem
|
|
94
|
+
```
|
|
72
95
|
|
|
73
96
|
## License
|
|
74
97
|
|
data/lib/nfe.rb
CHANGED
data/lib/nfe/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nfe-io
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ricardo Caldeira
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -93,6 +93,7 @@ files:
|
|
|
93
93
|
- lib/nfe/api_operations/update.rb
|
|
94
94
|
- lib/nfe/api_resource.rb
|
|
95
95
|
- lib/nfe/company.rb
|
|
96
|
+
- lib/nfe/configuration.rb
|
|
96
97
|
- lib/nfe/errors/nfe_error.rb
|
|
97
98
|
- lib/nfe/legal_people.rb
|
|
98
99
|
- lib/nfe/natural_people.rb
|