invoice 1.0.1 → 1.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.
- data/README.md +1 -1
- data/images/.DS_Store +0 -0
- data/invoice.gemspec +1 -1
- data/lib/invoice/version.rb +1 -1
- metadata +4 -3
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Print out simple invoice tailored for Croatia. You can setup your company data along with your customers with some easy settings.
|
|
4
4
|
|
|
5
5
|
After that you need to setup invoice data and render the invoice
|
|
6
|
-
```
|
|
6
|
+
```ruby
|
|
7
7
|
INVOICE = {
|
|
8
8
|
no: '116/2012',
|
|
9
9
|
place_and_date: 'Zagreb, 25.11.2012.godine',
|
data/images/.DS_Store
ADDED
|
Binary file
|
data/invoice.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
|
10
10
|
gem.email = ["kresimir.bojcic@gmail.com"]
|
|
11
11
|
gem.description = %q{Simple .pdf invoice generator for Croatia}
|
|
12
12
|
gem.summary = %q{Generate your invoices with less effort}
|
|
13
|
-
gem.homepage = ""
|
|
13
|
+
gem.homepage = "https://github.com/drKreso/invoice"
|
|
14
14
|
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/invoice/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: invoice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-11-
|
|
12
|
+
date: 2012-11-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Simple .pdf invoice generator for Croatia
|
|
15
15
|
email:
|
|
@@ -31,12 +31,13 @@ files:
|
|
|
31
31
|
- fonts/verdanab.ttf
|
|
32
32
|
- fonts/verdanai.ttf
|
|
33
33
|
- fonts/verdanaz.ttf
|
|
34
|
+
- images/.DS_Store
|
|
34
35
|
- images/example_invoice.png
|
|
35
36
|
- invoice.gemspec
|
|
36
37
|
- lib/invoice.rb
|
|
37
38
|
- lib/invoice/croatian_pdf_invoice.rb
|
|
38
39
|
- lib/invoice/version.rb
|
|
39
|
-
homepage:
|
|
40
|
+
homepage: https://github.com/drKreso/invoice
|
|
40
41
|
licenses: []
|
|
41
42
|
post_install_message:
|
|
42
43
|
rdoc_options: []
|