pdftk-ruby 0.5.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 +7 -0
- data/.rspec +3 -0
- data/Gemfile +10 -0
- data/LICENSE +339 -0
- data/README.md +32 -0
- data/Rakefile +8 -0
- data/exe/pdftk +8 -0
- data/jar/pdftk-3.3.2/pdftk-all.jar +0 -0
- data/lib/pdftk/ruby/cli.rb +18 -0
- data/lib/pdftk/ruby/version.rb +7 -0
- data/lib/pdftk/ruby.rb +10 -0
- data/license_gpl_pdftk/pdftk_gpl_license.txt +9 -0
- data/license_gpl_pdftk/readme.rtf +0 -0
- data/license_gpl_pdftk/readme.txt +5 -0
- data/license_gpl_pdftk/reference/apache_license_2.txt +202 -0
- data/license_gpl_pdftk/reference/gcc_runtime_library_exception_3.1.html +68 -0
- data/license_gpl_pdftk/reference/gcc_runtime_library_exception_3.1.txt +68 -0
- data/license_gpl_pdftk/reference/gnu_general_public_license_2.txt +339 -0
- data/license_gpl_pdftk/reference/gnu_general_public_license_3.0.txt +674 -0
- data/license_gpl_pdftk/reference/gnu_lgpl_license_2.1.txt +510 -0
- data/license_gpl_pdftk/reference/gnu_lgpl_license_2.txt +481 -0
- data/license_gpl_pdftk/third_party/apache_batik.txt +14 -0
- data/license_gpl_pdftk/third_party/apache_batik_NOTICE.txt +18 -0
- data/license_gpl_pdftk/third_party/bouncy_castle.txt +21 -0
- data/license_gpl_pdftk/third_party/classpath.txt +31 -0
- data/license_gpl_pdftk/third_party/crt1_crt2.txt +17 -0
- data/license_gpl_pdftk/third_party/itext-paulo.txt +16 -0
- data/license_gpl_pdftk/third_party/libgcc.txt +20 -0
- data/license_gpl_pdftk/third_party/libgcj.txt +26 -0
- data/license_gpl_pdftk/third_party/libiconv.txt +14 -0
- data/license_gpl_pdftk/third_party/libstdc++.txt +19 -0
- data/license_gpl_pdftk/third_party/libz.txt +31 -0
- data/license_gpl_pdftk/third_party/mingw.txt +5 -0
- data/pdftk-ruby.gemspec +36 -0
- data/sig/pdftk/ruby.rbs +6 -0
- metadata +79 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// This file is part of the GNU ISO C++ Library. This library is free
|
|
2
|
+
// software; you can redistribute it and/or modify it under the
|
|
3
|
+
// terms of the GNU General Public License as published by the
|
|
4
|
+
// Free Software Foundation; either version 3, or (at your option)
|
|
5
|
+
// any later version.
|
|
6
|
+
|
|
7
|
+
// This library is distributed in the hope that it will be useful,
|
|
8
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10
|
+
// GNU General Public License for more details.
|
|
11
|
+
|
|
12
|
+
// Under Section 7 of GPL version 3, you are granted additional
|
|
13
|
+
// permissions described in the GCC Runtime Library Exception, version
|
|
14
|
+
// 3.1, as published by the Free Software Foundation.
|
|
15
|
+
|
|
16
|
+
// You should have received a copy of the GNU General Public License and
|
|
17
|
+
// a copy of the GCC Runtime Library Exception along with this program;
|
|
18
|
+
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
19
|
+
// <http://www.gnu.org/licenses/>.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
(C) 1995-2004 Jean-loup Gailly and Mark Adler
|
|
2
|
+
|
|
3
|
+
This software is provided 'as-is', without any express or implied
|
|
4
|
+
warranty. In no event will the authors be held liable for any damages
|
|
5
|
+
arising from the use of this software.
|
|
6
|
+
|
|
7
|
+
Permission is granted to anyone to use this software for any purpose,
|
|
8
|
+
including commercial applications, and to alter it and redistribute it
|
|
9
|
+
freely, subject to the following restrictions:
|
|
10
|
+
|
|
11
|
+
1. The origin of this software must not be misrepresented; you must not
|
|
12
|
+
claim that you wrote the original software. If you use this software
|
|
13
|
+
in a product, an acknowledgment in the product documentation would be
|
|
14
|
+
appreciated but is not required.
|
|
15
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
|
16
|
+
misrepresented as being the original software.
|
|
17
|
+
3. This notice may not be removed or altered from any source distribution.
|
|
18
|
+
|
|
19
|
+
Jean-loup Gailly Mark Adler
|
|
20
|
+
jloup@gzip.org madler@alumni.caltech.edu
|
|
21
|
+
|
|
22
|
+
If you use the zlib library in a product, we would appreciate *not*
|
|
23
|
+
receiving lengthy legal documents to sign. The sources are provided
|
|
24
|
+
for free but without warranty of any kind. The library has been
|
|
25
|
+
entirely written by Jean-loup Gailly and Mark Adler; it does not
|
|
26
|
+
include third-party code.
|
|
27
|
+
|
|
28
|
+
If you redistribute modified sources, we would appreciate that you include
|
|
29
|
+
in the file ChangeLog history information documenting your changes. Please
|
|
30
|
+
read the FAQ for more information on the distribution of modified source
|
|
31
|
+
versions.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
MinGW runtime: The MinGW base runtime package has been placed in the public domain, and is not governed by copyright. This basically means that you can do what you like with the code.
|
|
2
|
+
|
|
3
|
+
w32api: You are free to use, modify and copy this package. No restrictions are imposed on programs or object files linked with this library. You may not restrict the the usage of this library. You may distribute this library as part of another package or as a modified package if, and only if, you do not restrict the usage of the portions consisting of this (optionally modified) library. If distributed as a modified package, then a copy of this notice must be included.
|
|
4
|
+
|
|
5
|
+
This library is distributed in the hope that it will be useful, but WITHOUT WARRANTY OF ANY KIND; without even the implied warranties of MERCHANTABILITY or of FITNESS FOR A PARTICULAR PURPOSE.
|
data/pdftk-ruby.gemspec
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/pdftk/ruby/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "pdftk-ruby"
|
|
7
|
+
spec.version = Pdftk::Ruby::VERSION
|
|
8
|
+
spec.authors = ["takahashim"]
|
|
9
|
+
spec.email = ["takahashimm@gmail.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "wrapper command of pdftk-java"
|
|
12
|
+
spec.description = "wrapper command of pdftk-java"
|
|
13
|
+
spec.homepage = "https://github.com/takahashim/pdftk-ruby"
|
|
14
|
+
spec.required_ruby_version = ">= 2.6.0"
|
|
15
|
+
|
|
16
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
17
|
+
spec.metadata["source_code_uri"] = "https://github.com/takahashim/pdftk-ruby"
|
|
18
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
19
|
+
|
|
20
|
+
# Specify which files should be added to the gem when it is released.
|
|
21
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
22
|
+
spec.files = Dir.chdir(__dir__) do
|
|
23
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
24
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
spec.bindir = "exe"
|
|
28
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
29
|
+
spec.require_paths = ["lib"]
|
|
30
|
+
|
|
31
|
+
# Uncomment to register a new dependency of your gem
|
|
32
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
|
33
|
+
|
|
34
|
+
# For more information and examples about making a new gem, check out our
|
|
35
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
|
36
|
+
end
|
data/sig/pdftk/ruby.rbs
ADDED
metadata
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: pdftk-ruby
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.5.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- takahashim
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-06-01 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: wrapper command of pdftk-java
|
|
14
|
+
email:
|
|
15
|
+
- takahashimm@gmail.com
|
|
16
|
+
executables:
|
|
17
|
+
- pdftk
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- ".rspec"
|
|
22
|
+
- Gemfile
|
|
23
|
+
- LICENSE
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- exe/pdftk
|
|
27
|
+
- jar/pdftk-3.3.2/pdftk-all.jar
|
|
28
|
+
- lib/pdftk/ruby.rb
|
|
29
|
+
- lib/pdftk/ruby/cli.rb
|
|
30
|
+
- lib/pdftk/ruby/version.rb
|
|
31
|
+
- license_gpl_pdftk/pdftk_gpl_license.txt
|
|
32
|
+
- license_gpl_pdftk/readme.rtf
|
|
33
|
+
- license_gpl_pdftk/readme.txt
|
|
34
|
+
- license_gpl_pdftk/reference/apache_license_2.txt
|
|
35
|
+
- license_gpl_pdftk/reference/gcc_runtime_library_exception_3.1.html
|
|
36
|
+
- license_gpl_pdftk/reference/gcc_runtime_library_exception_3.1.txt
|
|
37
|
+
- license_gpl_pdftk/reference/gnu_general_public_license_2.txt
|
|
38
|
+
- license_gpl_pdftk/reference/gnu_general_public_license_3.0.txt
|
|
39
|
+
- license_gpl_pdftk/reference/gnu_lgpl_license_2.1.txt
|
|
40
|
+
- license_gpl_pdftk/reference/gnu_lgpl_license_2.txt
|
|
41
|
+
- license_gpl_pdftk/third_party/apache_batik.txt
|
|
42
|
+
- license_gpl_pdftk/third_party/apache_batik_NOTICE.txt
|
|
43
|
+
- license_gpl_pdftk/third_party/bouncy_castle.txt
|
|
44
|
+
- license_gpl_pdftk/third_party/classpath.txt
|
|
45
|
+
- license_gpl_pdftk/third_party/crt1_crt2.txt
|
|
46
|
+
- license_gpl_pdftk/third_party/itext-paulo.txt
|
|
47
|
+
- license_gpl_pdftk/third_party/libgcc.txt
|
|
48
|
+
- license_gpl_pdftk/third_party/libgcj.txt
|
|
49
|
+
- license_gpl_pdftk/third_party/libiconv.txt
|
|
50
|
+
- license_gpl_pdftk/third_party/libstdc++.txt
|
|
51
|
+
- license_gpl_pdftk/third_party/libz.txt
|
|
52
|
+
- license_gpl_pdftk/third_party/mingw.txt
|
|
53
|
+
- pdftk-ruby.gemspec
|
|
54
|
+
- sig/pdftk/ruby.rbs
|
|
55
|
+
homepage: https://github.com/takahashim/pdftk-ruby
|
|
56
|
+
licenses: []
|
|
57
|
+
metadata:
|
|
58
|
+
homepage_uri: https://github.com/takahashim/pdftk-ruby
|
|
59
|
+
source_code_uri: https://github.com/takahashim/pdftk-ruby
|
|
60
|
+
post_install_message:
|
|
61
|
+
rdoc_options: []
|
|
62
|
+
require_paths:
|
|
63
|
+
- lib
|
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 2.6.0
|
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '0'
|
|
74
|
+
requirements: []
|
|
75
|
+
rubygems_version: 3.3.7
|
|
76
|
+
signing_key:
|
|
77
|
+
specification_version: 4
|
|
78
|
+
summary: wrapper command of pdftk-java
|
|
79
|
+
test_files: []
|