ronaldocpontes

Results 13 comments of ronaldocpontes

Thanks for the update @dmitrio95. Good to know you are working on it. Glad to be of any help.

Having the same issue with lots of hours spent trying to debug and fix. Is there an 'official' way to do this? What would be the best practice?

Hi, did you like this app? I am finding it very useful to be able to switch my favourite controls straight from the Lightpad hardware without needing to go back...

How can I review this pull request? I am not a Ruby specialist... can I pull the changes directly from the gem location and still get updates for new versions?...

I am still getting corrupted images... - copied your changed "file_wrapper.rb" into C:\RailsInstaller\Ruby1.9.3\lib\ruby\gems\1.9.1\bundler\gems\rake-pipeline-65b1e744defa\lib\rake-pipeline - deleted the assets and tmp folder - ran bundle exec rake build This is what I...

Yes... I am posting an original and after-corruption png... I am running on Windows 8 # CORRUPTED ![iphone4s_black](https://f.cloud.github.com/assets/3316428/453512/df7f1ff8-b319-11e2-9374-34c4a444c6b3.png) # ORIGINAL ![original-iphone4s_black](https://f.cloud.github.com/assets/3316428/453511/dbe7d09c-b319-11e2-887c-f8a0b15058bd.png)

If it helps here is the output from debugging the code: FILE: img/theme/iphone4s_black.png before read : BINARY after read : BINARY contents.encoding : ASCII-8BIT forcing binary encoding... contents.encoding : ASCII-8BIT...

Strangely, the write method also seems to be on binary encoding... FILE: img/theme/iphone4s_black.png before read : BINARY after read : BINARY contents.encoding : ASCII-8BIT forcing binary encoding... contents.encoding : ASCII-8BIT...

Hi Joe, Just curious if you had a chance to replicate the issue... Tks

Hi Joe, I finally could fix the issue on Windows with following set of methods: check: http://blog.leosoto.com/2008/03/reading-binary-file-on-ruby.html ``` def read contents = if "".respond_to?(:encode) and encoding=="BINARY" contents = open(fullpath, "rb")...