Dan Kubb
Dan Kubb
It's not splitting a URL, it's splitting a hostname that is a host with an optional port. afaik there is no URI method to parse/split hostname. To use URI you'd...
@acook coming in late to this risks sounding like an armchair interface designer, but in my opinion "as" sounds more like assignment _to_ something. So in this case I would...
Looking at the stacktrace, just before the exception is thrown `Module#const_set` is called, then `Rubinius::Type.coerce_to_constant_name` is called and passed (presumably) whatever was passed into const_set. Now, based on the error...
In my case I ran it against another project of mine, but I had to do some tweaking to get it to work under rspec 2. At the moment I'm...
Here are steps to repro: (I would assume any rbx would repro this, but I was using rbx-head) ``` bash rvm rbx-head git clone git://github.com/dkubb/ice_nine.git cd ice_nine git checkout rspec2...
Ok, I started to poke around with this. I tried a few hacky attempts to get the AST for a class (or module) and I wasn't satisfied with any of...