Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.4
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ source "https://rubygems.org/"
group :development, :test do
gem 'rake', '~> 0.9.2'
gem "rdoc", '~> 3.12'
gem "test-unit"
end
9 changes: 8 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
GEM
remote: https://rubygems.org/
specs:
json (1.6.5)
json (1.8.6)
power_assert (3.0.1)
rake (0.9.2.2)
rdoc (3.12)
json (~> 1.4)
test-unit (3.7.7)
power_assert

PLATFORMS
ruby

DEPENDENCIES
rake (~> 0.9.2)
rdoc (~> 3.12)
test-unit

BUNDLED WITH
4.0.3
2 changes: 1 addition & 1 deletion lib/pdf/toolkit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def write_info_to_file(out)
end
retval
ensure
File.unlink(tmp) if tmp && File.exists?(tmp)
File.unlink(tmp) if tmp && File.exist?(tmp)
end

def update
Expand Down
1 change: 0 additions & 1 deletion pdf-toolkit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Gem::Specification.new do |s|
s.rubyforge_project = 'pdf-toolkit'
s.homepage = "http://pdf-toolkit.rubyforge.org"

s.has_rdoc = true
s.require_path = 'lib'

s.files = [ "Rakefile", "README.md", "pdf-toolkit.gemspec" ]
Expand Down