pdftk-heroku 0.0.4

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6f68201f558a3195efce47cee1b2671d4673bd83
4
+ data.tar.gz: 5a51e74370e2d45e6da6ecb84e3a84fa872b1392
5
+ SHA512:
6
+ metadata.gz: cd6e2671d395f498aeaa0eb85fd361aac6847d5f63256d137c95cb0d6d2d9c8bfdd66a263d340e5692924a6287cf5e79f16f3621f86563bf08193b8fdbbff915
7
+ data.tar.gz: 9c7339a05fb1c8bd7fde0ec945795f0d40909b7a5aa4e9348c855311458f4fe807ad2097f9514f0a8b3d89feb921cb1033920d566c45f933cfd32072953d6c62
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in pdftk-heroku.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Charlie Maffitt
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # PDFtk::Heroku
2
+
3
+ Adds PDFtk library to your Heroku stack without the need for a custom buildpack.
4
+
5
+ ## Requires Cedar14 Stack
6
+
7
+ Latest version of PDFtk 2.0.2 requires the [Heroku Cedar14 stack](https://blog.heroku.com/archives/2014/8/19/cedar-14-public-beta) due to certain dependancies only available in the newer releases of Ubuntu.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ gem 'pdftk-heroku'
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install pdftk-heroku
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,10 @@
1
+ require "pdftk-heroku/version"
2
+
3
+ module Pdftk
4
+ module Heroku
5
+
6
+ ENV['PATH'] = File.expand_path("../pdftk-heroku/binaries", __FILE__) + ":#{ENV['PATH']}"
7
+ ENV['LD_LIBRARY_PATH'] = File.expand_path("../pdftk-heroku/binaries", __FILE__) + ":#{ENV['LD_LIBRARY_PATH']}"
8
+
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ module Pdftk
2
+ module Heroku
3
+ VERSION = "0.0.4"
4
+ end
5
+ end
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'pdftk-heroku/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "pdftk-heroku"
8
+ gem.version = Pdftk::Heroku::VERSION
9
+ gem.authors = ["Charlie Maffitt", "Robert Rawlins", "Daniel Rice"]
10
+ gem.email = %q{cmaffitt@bignerdranch.com, robrawlins@gmail.com, daniel.rice@ldstudios.co}
11
+ gem.description = %q{pdftk binary for Heroku}
12
+ gem.summary = %q{pdftk binary for Heroku, meant for use on the Cedar14 stack}
13
+ gem.homepage = %q{https://github.com/ChromeCapital/pdftk-heroku}
14
+ gem.date = Time.now
15
+ gem.licenses = ["MIT"]
16
+
17
+ gem.files = `git ls-files`.split($/)
18
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
19
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
20
+ gem.require_paths = ["lib"]
21
+ end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pdftk-heroku
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
5
+ platform: ruby
6
+ authors:
7
+ - Charlie Maffitt
8
+ - Robert Rawlins
9
+ - Daniel Rice
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2015-08-13 00:00:00.000000000 Z
14
+ dependencies: []
15
+ description: pdftk binary for Heroku
16
+ email: cmaffitt@bignerdranch.com, robrawlins@gmail.com, daniel.rice@ldstudios.co
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".gitignore"
22
+ - Gemfile
23
+ - LICENSE.txt
24
+ - README.md
25
+ - Rakefile
26
+ - lib/pdftk-heroku.rb
27
+ - lib/pdftk-heroku/binaries/.DS_Store
28
+ - lib/pdftk-heroku/binaries/libgcj.so.14
29
+ - lib/pdftk-heroku/binaries/pdftk
30
+ - lib/pdftk-heroku/version.rb
31
+ - pdftk-heroku.gemspec
32
+ homepage: https://github.com/ChromeCapital/pdftk-heroku
33
+ licenses:
34
+ - MIT
35
+ metadata: {}
36
+ post_install_message:
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubyforge_project:
52
+ rubygems_version: 2.4.8
53
+ signing_key:
54
+ specification_version: 4
55
+ summary: pdftk binary for Heroku, meant for use on the Cedar14 stack
56
+ test_files: []