pdfdprint 0.1.0 → 0.1.1
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 +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +16 -1
- data/lib/pdfdprint/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cca704d9e6d85aab432f3b458a9b3e36bd2b4a0db2aa05cd49eb93725d740998
|
4
|
+
data.tar.gz: d5de11326143ec96f69aa66a81b1f04c7d2e3a9d226c3f6303d57bfea121f403
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc55ca7d45ed2be718164e3e788fd11c8acb5ef3973e5729dbc93e5f0708eb0e33e1091ac1809a146cb1793a9a4c0f4f59db53d9e0f6321c3f5cf5ccd8404bf7
|
7
|
+
data.tar.gz: 234c37630fad3229c336e6d56b01e4dbab79369acfc6ed095b42556b105c7828ce42d5d7d888a169734009596811385b3ca60faab398cccdfa4c94e8268bb68b
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## 0.1.1 - 2019-09-08
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
- More metadata information to gem specification
|
13
|
+
- Prerequisites and installation instructions in README
|
14
|
+
|
15
|
+
### Changed
|
16
|
+
|
17
|
+
- Corrected minor typo in README
|
18
|
+
|
8
19
|
## 0.1.0 - 2019-09-07
|
9
20
|
|
10
21
|
### Added
|
data/README.md
CHANGED
@@ -2,6 +2,17 @@
|
|
2
2
|
|
3
3
|
Allows you to print PDF files directly to a modern network-enabled printer supporting raw PDF printing on TCP port 9100 from the command line.
|
4
4
|
|
5
|
+
## Prerequisites
|
6
|
+
|
7
|
+
- Ruby
|
8
|
+
- Network-enabled printer supporting direct PDF printing
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
```shell
|
13
|
+
gem install pdfdprint
|
14
|
+
```
|
15
|
+
|
5
16
|
## Usage
|
6
17
|
|
7
18
|
```
|
@@ -37,7 +48,11 @@ $ pdfdprint -p myprinter /home/me/Documents
|
|
37
48
|
|
38
49
|
### Unsupported Personality: UNKNOWN
|
39
50
|
|
40
|
-
If
|
51
|
+
If your printer only prints out the `Unsupported Personality: UNKNOWN` text this means that your printer does not support direct PDF printing.
|
52
|
+
|
53
|
+
## Authors
|
54
|
+
|
55
|
+
- Marc - [towards | Ruby & Web Development](https://towards.ch)
|
41
56
|
|
42
57
|
## License
|
43
58
|
|
data/lib/pdfdprint/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pdfdprint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc Bigler
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-09-
|
11
|
+
date: 2019-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -76,7 +76,9 @@ licenses:
|
|
76
76
|
- GPL-3.0
|
77
77
|
metadata:
|
78
78
|
allowed_push_host: https://rubygems.org
|
79
|
+
bug_tracker_uri: https://github.com/towards/pdfdprint/issues
|
79
80
|
changelog_uri: https://github.com/towards/pdfdprint/blob/master/CHANGELOG.md
|
81
|
+
documentation_uri: https://www.rubydoc.info/gems/pdfdprint
|
80
82
|
homepage_uri: https://towards.ch
|
81
83
|
source_code_uri: https://github.com/towards/pdfdprint
|
82
84
|
post_install_message:
|