Iñaki Baz Castillo

Results 550 comments of Iñaki Baz Castillo

I am closing this since we no longer use bowser library but ua-parser.

Hi, developers. Any update or thoughts about this? IMHO it makes lot of sense.

@ghost said: > Chrome dev tools also has this feature. Well, unless you need to limit not just HTTP stuff.

I've found the issue. In gems/mysqlplus-0.1.1/lib/mysqlplus.rb the first line is: ``` require 'mysql' ``` This is supposed to load "mysql.so" file in same directory (and it does it in Ruby1.8)....

A better aproach: ``` require File.join(File.dirname(__FILE__), "mysql") ```

The problem is that after these two solutions, a new call to "require 'mysql'" would load the "normal" mysql gem! ("require" wouldn't return false) so the class would be replaced...

Yes, original "mysql" Mysql replaces "mysqlplus" one: http://gist.github.com/259099 As you can see "require 'mysql'" returns 'true'. Also you check it with this script I've code: http://gist.github.com/259102 (read the comments to...

Hi, is there news about this issue? IMHO the simplest solution would be renaming "mysql.so" to "mysqlplus.so" and in lib/mysqlplus.rb: ``` require File.join(File.dirname(__FILE__), "mysqlplus") ``` And then, users or applications...