Skip to content

Commit

Permalink
Release 1.0 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
strzibny authored Oct 16, 2017
1 parent 998a3db commit 7934a1d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 23 deletions.
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
# InvoicePrinter
<a href="http://strzibny.github.io/invoice_printer/">
<img src="./docs/web/logo.png" width="300" />
</a>

&nbsp;

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

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

**New: First release candidate for stable 1.0.0 is here!**

<p align="center">
<a href="https://github.com/strzibny/invoice_printer/raw/master/examples/promo.pdf">
<img src="./examples/picture.jpg" width="580" />
</a>
</p>

See more usecases in the `examples/` directory.

## Features

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

## Example

| Simple invoice |
| -------------- |
| <a href="https://github.com/strzibny/invoice_printer/raw/master/examples/promo.pdf"><img src="./examples/picture.jpg" width="180" /></a>|

See more usecases in the `examples/` directory.

## Installation

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

Or install it yourself as:

$ gem install invoice_printer --pre
$ gem install invoice_printer

## Usage

Expand Down
20 changes: 10 additions & 10 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
height: 845px;
}
#photo-wrapper, #code { margin: 0 calc((100% - 650px) / 2); width: 650px; height: 845px; }

#photo-wrapper img { height: auto; }
#content { text-align: center; margin: 0; padding: 0 }
#box { width: 400px; margin: auto; }

div.github {
position: absolute; right:10px; top: 10px;
}
Expand All @@ -63,7 +63,7 @@
border-radius-left: 5px;
left: calc(50% - 381px);
top: 40px;
background: red;
background: red;
color: white;
text-decoration: none;
}
Expand Down Expand Up @@ -212,9 +212,9 @@
</pre>
</div>


</div>

</div>
<div id="content">
<div class="promo">
Expand All @@ -231,12 +231,12 @@

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

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

<h2 style="">Install</h2>

<div style="display: block; margin: 20px; color: black; padding: 10px; width: 250px; border-radius: 4px; margin: auto;">
<code style="font-size:75px;">$ gem install invoice_printer --pre</code>
<code style="font-size:75px;">$ gem install invoice_printer</code>
</div>

<h2 style="">Features</h2>
Expand Down Expand Up @@ -265,9 +265,9 @@ <h2 style="">Contribute</h2>
<div>
Contributions welcome at <a href="https://github.com/strzibny/invoice_printer">strzibny/invoice_printer</a>.
</div>

<h2 style="">Authors</h2>

<div>
&copy; <a href="http://strzibny.name/">Josef Strzibny</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/invoice_printer/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module InvoicePrinter
VERSION = '1.0.0.rc1'
VERSION = '1.0.0'
end

0 comments on commit 7934a1d

Please sign in to comment.