br_invoices_pdf 0.1.3 → 0.1.4.alpha.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 523973f14573f8fab038830c3f9c251554632b95
4
- data.tar.gz: c0ac28b39f14c9b122e72645d8a4a639d3588ae0
3
+ metadata.gz: e1579be6ec05c20864ef0087a607d3e5441d2308
4
+ data.tar.gz: da8527468abe7382c9220108d6c5372f137e1042
5
5
  SHA512:
6
- metadata.gz: bdb828d3ee282f1ec8dea281b93cca3ce76661e4f6288fd409d9e0b9f6192e6fb8dfe2fb0fda24f85a1a3d5c757c59586acee166bb2c595ca6a6e1d326b7b1d9
7
- data.tar.gz: '058adbc1753fae538d3dd892db83664d44169fa9bc59cbaaae1b1e2466bf39d574628e6fb1a5da8e7f1c9fee8e1e5cf7699ba1983c4222e4033c0c0ce9717034'
6
+ metadata.gz: 8c4f970d42a939715a1a4149cca17b2827d106967e075e20867cd62af98fee7d791a325bffc259561186350dfc41e9c51da6873ed6e707ea0ecd52e9293f0745
7
+ data.tar.gz: d3f60e47ca2455cec51b794c26db65676d2ba9451151d201ad92a7a5398320b76d74f81ede4d4f8b21b19be0a0fa9d98b8b60ad85086616cbe651ab284c8f0bd
data/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # BR Invoices PDF
2
2
  [![Build Status](https://semaphoreci.com/api/v1/pdvend/br_invoices_pdf/branches/master/shields_badge.svg)](https://semaphoreci.com/pdvend/br_invoices_pdf)
3
3
  [![Coverage Status](https://coveralls.io/repos/github/pdvend/br_invoices_pdf/badge.svg?branch=master)](https://coveralls.io/github/pdvend/br_invoices_pdf?branch=master)
4
+ [![Gem Version](https://badge.fury.io/rb/br_invoices_pdf.svg)](https://badge.fury.io/rb/br_invoices_pdf)
5
+ [![Dependency Status](https://gemnasium.com/badges/github.com/pdvend/br_invoices_pdf.svg)](https://gemnasium.com/github.com/pdvend/br_invoices_pdf)
6
+ [![Code Climate](https://codeclimate.com/github/pdvend/br_invoices_pdf/badges/gpa.svg)](https://codeclimate.com/github/pdvend/br_invoices_pdf)
4
7
 
5
8
  Este projeto gera arquivos PDF para documentos fiscais no Brasil a partir de seus XMLs, suportando atualmente:
6
9
  - NFC-e
@@ -7,11 +7,15 @@ require 'br_invoices_pdf/version'
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'br_invoices_pdf'
9
9
  spec.version = BrInvoicesPdf::VERSION
10
- spec.version = "#{BrInvoicesPdf::VERSION}-pre-#{ENV['SEMAPHORE_DEPLOY_NUMBER']}" if ENV['SEMAPHORE'] && ENV['PRE-RELEASE']
10
+ if ENV['SEMAPHORE'] && ENV['PRE_RELEASE']
11
+ spec.version = "#{BrInvoicesPdf::VERSION}.alpha.#{ENV['SEMAPHORE_DEPLOY_NUMBER']}"
12
+ else
13
+ spec.version = BrInvoicesPdf::VERSION
14
+ end
11
15
  spec.authors = ['Thiago Ribeiro', 'Gabriel Teles']
12
16
  spec.email = ['thiago@pdvend.com.br', 'gabriel@pdvend.com.br']
13
17
 
14
- spec.summary = 'CFe pdf generator'
18
+ spec.summary = 'Brazilian Fiscal Documents PDF generator'
15
19
  spec.homepage = 'https://github.com/pdvend/br_invoices_pdf'
16
20
  spec.license = 'MIT'
17
21
 
@@ -1,3 +1,3 @@
1
1
  module BrInvoicesPdf
2
- VERSION = '0.1.3'.freeze
2
+ VERSION = '0.1.4'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: br_invoices_pdf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4.alpha.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Ribeiro
@@ -147,13 +147,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
147
147
  version: '0'
148
148
  required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - ">="
150
+ - - ">"
151
151
  - !ruby/object:Gem::Version
152
- version: '0'
152
+ version: 1.3.1
153
153
  requirements: []
154
154
  rubyforge_project:
155
155
  rubygems_version: 2.4.8
156
156
  signing_key:
157
157
  specification_version: 4
158
- summary: CFe pdf generator
158
+ summary: Brazilian Fiscal Documents PDF generator
159
159
  test_files: []