Scott Tadman
Scott Tadman
There's already the [Q promise library](https://github.com/kriskowal/q). Isn't there another name that might work better?
Adding the following as the first line of `lib/aws/s3/extensions.rb` fixes a problem where the gem will not load in Ruby 1.9: ``` # encoding: BINARY ``` Without this you will...
There appears to be a problem with making AJAX form requests using the unobtrusive helper on forms with :remote => true set. The line causing the problem is: ``` dataFilter:...
It'd be nice if documentation that was incorrect or just extremely thin, as can be the case in some parts, could be reported/flagged/highlighted. APIDock has (had?) comments that helped somewhat...
There might be a compatibility issue with Rubygems where `Gem::DefaultUserInteraction` is not automatically loaded, as in: ```shell $ tapioca dsl .../.rbenv/versions/3.2.0/lib/ruby/gems/3.2.0/gems/tapioca-0.11.5/lib/tapioca.rb:22:in `silence_warnings': uninitialized constant Gem::DefaultUserInteraction (NameError) ``` Likely because of...
When compiled on Fedora 14 under Ruby 1.9 (p180 and p290) it will throw an exception that looks like this: ``` ruby: symbol lookup error: /usr/local/rvm/gems/ruby-1.9.2-p290/gems/mysqlplus-0.1.2/lib/mysql.so: undefined symbol: vio_blocking ```...
The example given in the README is missing which `require` headers are necessary. Based on the errors you get when trying to run it bare the following would make sense:...
The library currently has no support for this record type and instead reports it as `Resolv::DNS::Resource::Generic::Type46_Class1:0x00007f8b62105438`. These are DNSSEC records as per [RFC4034](https://tools.ietf.org/html/rfc4034). Many examples in the wild for testing,...
Anyone who uses libraries that generate a lot of warnings will resort to using `-W0` as a default in Ruby. This does silence the warnings, but it also has the...
With ActiveRecord missing, the transactional_fixtures feature must be disabled, but this has the side-effect of turning off transactions for unit tests. I've searched for a method to re-engage this with...