jbl26 (Brian Lindauer)
- Login: jbl26
- Email: ruby-lang.org.hop@shendauer.com
- Registered on: 07/16/2011
- Last sign in: 08/15/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/13/2011
-
12:12 AM Ruby Bug #5188: mkmf libpath order prevents use of custom libs
- Luis,
That fixed my problem. Thank you.
Brian
08/12/2011
-
12:54 PM Ruby Bug #5188 (Third Party's Issue): mkmf libpath order prevents use of custom libs
- The sqlite3 gem has an option --with-sqlite3-lib, which lets you point it to a non-default location for the libsqlite3.so file. However, mkmf still tries to use the default system libsqlite3.so even when this option is specified. I've tr...
07/16/2011
-
12:43 PM Ruby Bug #4517: ArgumentError when sorting array of objects
- =begin
I did some investigation into this. The following code does not trigger the error
class Thing
attr_accessor :value
def initialize(value)
@value = value
end
end
stuff = [Thing.new("Fred"), Thing.new("...