invoice_printer 1.0.0.rc1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -12
- data/lib/invoice_printer/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68dd28c7401462152f32f64078ec6ec4bc6c1c20
|
4
|
+
data.tar.gz: 3485ac3d5c69314d76ea634456ef9f468c08d928
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d525aa420194f46dbcb91f18938ed7930bf84910ff07b07c8bbb0002418faddfaa8840b42e52f5c76b7da8a7bd06f4957850c3761270629bd56b1d7e58f504c8
|
7
|
+
data.tar.gz: c5f6d1afa08840f2eba50b83b54def3bb65799c07e5c66e04138a9cd625bea5d70c70977994802a24437db29960c9818f9b7b12068a3bd40244e2cc683481988
|
data/README.md
CHANGED
@@ -1,20 +1,14 @@
|
|
1
|
-
|
1
|
+
<a href="http://strzibny.github.io/invoice_printer/">
|
2
|
+
<img src="./docs/web/logo.png" width="300" />
|
3
|
+
</a>
|
4
|
+
|
5
|
+
|
2
6
|
|
3
7
|
Super simple PDF invoicing in pure Ruby (based on Prawn library).
|
4
8
|
|
5
9
|
InvoicePrinter does not impose any validations nor calculations on you. It is
|
6
10
|
designed only to provide an interface to build the PDF version of these documents.
|
7
11
|
|
8
|
-
**New: First release candidate for stable 1.0.0 is here!**
|
9
|
-
|
10
|
-
<p align="center">
|
11
|
-
<a href="https://github.com/strzibny/invoice_printer/raw/master/examples/promo.pdf">
|
12
|
-
<img src="./examples/picture.jpg" width="580" />
|
13
|
-
</a>
|
14
|
-
</p>
|
15
|
-
|
16
|
-
See more usecases in the `examples/` directory.
|
17
|
-
|
18
12
|
## Features
|
19
13
|
|
20
14
|
- Invoice/document name and number
|
@@ -32,6 +26,14 @@ See more usecases in the `examples/` directory.
|
|
32
26
|
- Note
|
33
27
|
- Well tested
|
34
28
|
|
29
|
+
## Example
|
30
|
+
|
31
|
+
| Simple invoice |
|
32
|
+
| -------------- |
|
33
|
+
| <a href="https://github.com/strzibny/invoice_printer/raw/master/examples/promo.pdf"><img src="./examples/picture.jpg" width="180" /></a>|
|
34
|
+
|
35
|
+
See more usecases in the `examples/` directory.
|
36
|
+
|
35
37
|
## Installation
|
36
38
|
|
37
39
|
Add this line to your application's Gemfile:
|
@@ -46,7 +48,7 @@ And then execute:
|
|
46
48
|
|
47
49
|
Or install it yourself as:
|
48
50
|
|
49
|
-
$ gem install invoice_printer
|
51
|
+
$ gem install invoice_printer
|
50
52
|
|
51
53
|
## Usage
|
52
54
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: invoice_printer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josef Strzibny
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -136,12 +136,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
136
|
version: '0'
|
137
137
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
138
|
requirements:
|
139
|
-
- - "
|
139
|
+
- - ">="
|
140
140
|
- !ruby/object:Gem::Version
|
141
|
-
version:
|
141
|
+
version: '0'
|
142
142
|
requirements: []
|
143
143
|
rubyforge_project:
|
144
|
-
rubygems_version: 2.
|
144
|
+
rubygems_version: 2.6.13
|
145
145
|
signing_key:
|
146
146
|
specification_version: 4
|
147
147
|
summary: Super simple PDF invoicing in pure Ruby
|