Tom Cocca
Tom Cocca
What dev environment are you on? All specs are passing for us in Mac OSX 10.6 and Ubuntu 11.04.
Hmm, I am also using ree 1.8.7 and we have tested in 1.9.2. Unfortunately I haven't upgraded to 10.7 yet. Have you pulled the commits I merged into master today?
@mvastola thanks so much for the help on this, however, are these lines necessary? s.add_development_dependency 'travis' s.add_development_dependency 'byebug' I think they are causing issues with the travis build: https://travis-ci.org/tcocca/active_pdftk/builds/41839419 Thanks,...
Please remove both and re-submit the pull, and I'll see what happens with travis. Thanks. On Mon, Nov 24, 2014 at 1:21 PM, Michael Vastola [email protected] wrote: > Do you...
Looks like travis still has failures: https://travis-ci.org/tcocca/active_pdftk/builds/41992879
Thanks for this patch. I will test this out on multiple ruby versions. I have been testing on 1.8.7 and 1.9.2. It looks like you are using 1.9.3, I will...
Hi, thanks for your interest in the project. I will definitely check out this PR. This is an interesting option to be able to set the tmpdir. What OS/Ruby are...
The other thing I would love to be able to do is use Dir.chdir to get into the tmpdir, which is supported by popen3 in version 1.9.2 and up http://apidock.com/ruby/Open3/popen3...
Hi, I think if we are going to have ActivePdftk fill out form fields that are #read_only? there needs to be some type of explicit call that sets read_only fields....
I believe it would look something like this: pdftk = ActivePdftk::Wrapper.new pdftk.cat([{:pdf => 'in.pdf', :start => 1, :end => 'end', :orientation => 'south'}], :output => 'out.pdf') If that doesn't work...