pdfs2pdf 0.0.8 → 0.1.0
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/CHANGELOGS.md +7 -46
- data/README.md +3 -0
- data/lib/pdfs2pdf/version.rb +1 -2
- data/pdfs2pdf.gemspec +3 -3
- data/rubocop-todo.yml +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac7fb0c13c82b73120c3f266264f8715fc56c454
|
|
4
|
+
data.tar.gz: 2e4783d34f74b1ce9a14a72083c9c62c3b9178d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44f5e451082e33d55143974e9f760cb6eccaeb5c287952a809e2a55045e17be912720088ed0e1593b780ce5f7c30f49414115b06158fe40f9116949ca6734708
|
|
7
|
+
data.tar.gz: 4b53b962016abf14b575ebba8f81ff8c75ef9a1723502fcb55dfdfc91027868afcc665498b44d5a74c6281a753d6d781385d3ec4f65a904af5639c570a8a9c4b
|
data/CHANGELOGS.md
CHANGED
|
@@ -1,53 +1,14 @@
|
|
|
1
1
|
### Changelogs
|
|
2
2
|
|
|
3
|
-
#### 0.0
|
|
3
|
+
#### 0.1.0
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
- Improve README.md
|
|
8
|
-
- Add the missing 'awesome_print' from gemspec file
|
|
5
|
+
- First [Semantic Versioning][] version
|
|
6
|
+
- Update gemspec file
|
|
9
7
|
|
|
10
|
-
#### 0.0.
|
|
11
|
-
|
|
12
|
-
-
|
|
13
|
-
* --inc-words
|
|
14
|
-
* --exc-words
|
|
15
|
-
* --ignorecase
|
|
16
|
-
- Rename 'utils.rb' to 'pdfs2pdf.rb'
|
|
17
|
-
- Update gemspec
|
|
18
|
-
- Misc cleanup
|
|
19
|
-
|
|
20
|
-
#### 0.0.6
|
|
21
|
-
|
|
22
|
-
- Allow options for wkhtmltopdf to be more customizable
|
|
23
|
-
* page_size: 'A4', 'Letter' can be set via configuration
|
|
24
|
-
* path to the 'wkhtmltopdf' can be set via configuration
|
|
25
|
-
* the 'pdfmarks metadata' can be set via configuration
|
|
26
|
-
* more options will be enabled in upcoming release
|
|
27
|
-
- Remove the changelogs section from README.md to CHANGLOGS.md
|
|
28
|
-
|
|
29
|
-
#### 0.0.5
|
|
30
|
-
|
|
31
|
-
- Update to latest dependencies
|
|
32
|
-
- Add links to CodeClimate and Gemnasium
|
|
33
|
-
|
|
34
|
-
#### 0.0.4
|
|
35
|
-
|
|
36
|
-
- Remove unused codes
|
|
37
|
-
- Update [agile_utils][] to 0.0.8
|
|
38
|
-
- Update [code_lister][] to 0.0.7
|
|
39
|
-
|
|
40
|
-
#### 0.0.3
|
|
41
|
-
|
|
42
|
-
- Update to [agile_utils][] which fix some minor bug
|
|
43
|
-
|
|
44
|
-
#### 0.0.2
|
|
45
|
-
|
|
46
|
-
- Fix incorrect version badge
|
|
47
|
-
|
|
48
|
-
#### 0.0.1
|
|
49
|
-
|
|
50
|
-
- Initial release
|
|
8
|
+
#### 0.0.1 - 0.0.8
|
|
9
|
+
- Releases that do not follow Semantic Versioning
|
|
10
|
+
- Implement new features and fix a few bugs a long the way
|
|
51
11
|
|
|
52
12
|
[Ghostscript]: http://www.ghostscript.com/
|
|
53
13
|
[Wkhtmltopdf]: http://wkhtmltopdf.org/
|
|
14
|
+
[Semantic Versioning]: http://semver.org/
|
data/README.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
Combine multiple PDF files into one file with simple bookmarks support using [Ghostscript][].
|
|
8
8
|
|
|
9
|
+
Note: start from version `0.1.0` this gem will be released using [Semantic Versioning][] convention.
|
|
10
|
+
|
|
9
11
|
### What it does?
|
|
10
12
|
|
|
11
13
|
Says you have the follow pdf files (included inside the test fixtures)
|
|
@@ -130,3 +132,4 @@ letters, numbers and/or underscore characters. Any other characters like
|
|
|
130
132
|
5. Create new Pull Request
|
|
131
133
|
|
|
132
134
|
[Ghostscript]: http://www.ghostscript.com/
|
|
135
|
+
[Semantic Versioning]: http://semver.org
|
data/lib/pdfs2pdf/version.rb
CHANGED
data/pdfs2pdf.gemspec
CHANGED
|
@@ -25,10 +25,10 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.test_files = Dir.glob('{test}/**/*')
|
|
26
26
|
spec.require_paths = ['lib']
|
|
27
27
|
spec.add_runtime_dependency 'thor'
|
|
28
|
-
spec.add_runtime_dependency 'agile_utils', '~> 0.
|
|
29
|
-
spec.add_runtime_dependency 'code_lister', '~> 0.
|
|
28
|
+
spec.add_runtime_dependency 'agile_utils', '~> 0.1'
|
|
29
|
+
spec.add_runtime_dependency 'code_lister', '~> 0.1'
|
|
30
30
|
spec.add_runtime_dependency 'pdf-reader', '~> 1.3.3'
|
|
31
|
-
spec.add_development_dependency 'awesome_print', '~> 1.2
|
|
31
|
+
spec.add_development_dependency 'awesome_print', '~> 1.2'
|
|
32
32
|
spec.add_development_dependency 'bundler', '~> 1.5'
|
|
33
33
|
spec.add_development_dependency 'gem-ctags', '~> 1.0'
|
|
34
34
|
spec.add_development_dependency 'guard-minitest', '~> 2.2'
|
data/rubocop-todo.yml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This configuration was generated by `rubocop --auto-gen-config`
|
|
2
|
-
# on 2014-05-
|
|
2
|
+
# on 2014-05-12 23:54:53 +1000 using RuboCop version 0.21.0.
|
|
3
3
|
# The point is for the user to remove these configuration records
|
|
4
4
|
# one by one as the offenses are removed from the code base.
|
|
5
5
|
# Note that changes in the inspected code, or installation of new
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pdfs2pdf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Burin Choomnuan
|
|
@@ -30,28 +30,28 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.
|
|
33
|
+
version: '0.1'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.
|
|
40
|
+
version: '0.1'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: code_lister
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.
|
|
47
|
+
version: '0.1'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.
|
|
54
|
+
version: '0.1'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: pdf-reader
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 1.2
|
|
75
|
+
version: '1.2'
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 1.2
|
|
82
|
+
version: '1.2'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: bundler
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -261,10 +261,10 @@ signing_key:
|
|
|
261
261
|
specification_version: 4
|
|
262
262
|
summary: Combine multiple pdfs into one pdf with proper bookmarks for easy navigation
|
|
263
263
|
test_files:
|
|
264
|
-
- test/
|
|
265
|
-
- test/test_helper.rb
|
|
264
|
+
- test/fixtures/samples/demo1_xxx.rb.xhtml.pdf
|
|
266
265
|
- test/fixtures/samples/demo2_xxx.rb.xhtml.pdf
|
|
267
|
-
- test/fixtures/samples/sub_dir/demo4_xxx.rb.xhtml.pdf
|
|
268
266
|
- test/fixtures/samples/sub_dir/demo3_xxx.rb.xhtml.pdf
|
|
269
|
-
- test/fixtures/samples/
|
|
267
|
+
- test/fixtures/samples/sub_dir/demo4_xxx.rb.xhtml.pdf
|
|
268
|
+
- test/lib/pdfs2pdf/test_pdfs2pdf.rb
|
|
269
|
+
- test/test_helper.rb
|
|
270
270
|
has_rdoc:
|