Skip to content

Commit 7934a1d

Browse files
authored
Release 1.0 (#18)
1 parent 998a3db commit 7934a1d

File tree

3 files changed

+25
-23
lines changed

3 files changed

+25
-23
lines changed

README.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
1-
# InvoicePrinter
1+
<a href="http://strzibny.github.io/invoice_printer/">
2+
<img src="./docs/web/logo.png" width="300" />
3+
</a>
4+
5+
&nbsp;
26

37
Super simple PDF invoicing in pure Ruby (based on Prawn library).
48

59
InvoicePrinter does not impose any validations nor calculations on you. It is
610
designed only to provide an interface to build the PDF version of these documents.
711

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-
1812
## Features
1913

2014
- Invoice/document name and number
@@ -32,6 +26,14 @@ See more usecases in the `examples/` directory.
3226
- Note
3327
- Well tested
3428

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+
3537
## Installation
3638

3739
Add this line to your application's Gemfile:
@@ -46,7 +48,7 @@ And then execute:
4648

4749
Or install it yourself as:
4850

49-
$ gem install invoice_printer --pre
51+
$ gem install invoice_printer
5052

5153
## Usage
5254

docs/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
height: 845px;
3636
}
3737
#photo-wrapper, #code { margin: 0 calc((100% - 650px) / 2); width: 650px; height: 845px; }
38-
38+
3939
#photo-wrapper img { height: auto; }
4040
#content { text-align: center; margin: 0; padding: 0 }
4141
#box { width: 400px; margin: auto; }
42-
42+
4343
div.github {
4444
position: absolute; right:10px; top: 10px;
4545
}
@@ -63,7 +63,7 @@
6363
border-radius-left: 5px;
6464
left: calc(50% - 381px);
6565
top: 40px;
66-
background: red;
66+
background: red;
6767
color: white;
6868
text-decoration: none;
6969
}
@@ -212,9 +212,9 @@
212212
</pre>
213213
</div>
214214

215-
215+
216216
</div>
217-
217+
218218
</div>
219219
<div id="content">
220220
<div class="promo">
@@ -231,12 +231,12 @@
231231

232232
<h2 style="">Download</h2>
233233

234-
<a href="https://rubygems.org/gems/invoice_printer" class="download"><span>1.0.0.rc1</span></a>
234+
<a href="https://rubygems.org/gems/invoice_printer" class="download"><span>1.0.0</span></a>
235235

236236
<h2 style="">Install</h2>
237-
237+
238238
<div style="display: block; margin: 20px; color: black; padding: 10px; width: 250px; border-radius: 4px; margin: auto;">
239-
<code style="font-size:75px;">$ gem install invoice_printer --pre</code>
239+
<code style="font-size:75px;">$ gem install invoice_printer</code>
240240
</div>
241241

242242
<h2 style="">Features</h2>
@@ -265,9 +265,9 @@ <h2 style="">Contribute</h2>
265265
<div>
266266
Contributions welcome at <a href="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/strzibny/invoice_printer">strzibny/invoice_printer</a>.
267267
</div>
268-
268+
269269
<h2 style="">Authors</h2>
270-
270+
271271
<div>
272272
&copy; <a href="http://strzibny.name/">Josef Strzibny</a>
273273
</div>

lib/invoice_printer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module InvoicePrinter
2-
VERSION = '1.0.0.rc1'
2+
VERSION = '1.0.0'
33
end

0 commit comments

Comments
 (0)