Comments
-
Greg Hurrell
After a
bundle update rails
the first run of the spec suite yields:Finished in 94.85 seconds 4389 examples, 1908 failures, 56 pending
Hopefully should be able to fix the bulk of those up fairly quickly.
-
Greg Hurrell
Hmph. Latest version of the mysql2 gem doesn't build on Mac OS X anymore. 0.2.6 does, 0.3.2 doesn't. Back to the bad old days of the first mysql gem.
-
Greg Hurrell
Ticket for mysql2 breakage:
Temporary workaround may be to just recompile MySQL with some different
./configure
options. Will check that out. -
Greg Hurrell
More info on that one: http://dev.mysql.com/doc/refman/5.0/en/threaded-clients.html
Notably, the page says that the binary distribution ships with a thread-safe client library by default (in addition to the normal library). I wonder if that is why the breakage hasn't been reported upstream, as most people don't install MySQL by source.
Trying a build now with
./configure --enable-thread-safe-client
.Looks like that will fix it, as I see the test in
extconf.rb
checks to see ifmysql_config --libs_r
returns an empty string or not. On my version, it returns the path to where the library would be, not an empty string. It probably needs an additional check to see if the lib file is actually there. -
Greg Hurrell
After getting the mysql2 gem working:
Finished in 1399.72 seconds 4389 examples, 329 failures, 60 pending
-
Greg Hurrell
Summary changed:
- From: Test Rails 3.1 beta
- To: Test Rails 3.1.0.rc1
-
Greg Hurrell
Status changed:
- From: new
- To: closed
Add a comment
Comments are now closed for this issue.