It seems there is a bug with Ruby19 port:
The problems seems to be with iconv:
Whereas on my OSX dev machine running Ruby 1.8.7:
Any idea how to solve that beside downgrading to Ruby 1.8.x?
Code:
$ rails my_app
undefined method `camelize' for "app":String
The problems seems to be with iconv:
Code:
$ irb19
irb(main):001:0> require 'iconv'
LoadError: no such file to load -- iconv
from (irb):1:in `require'
from (irb):1
from /usr/local/bin/irb19:12:in `<main>'
irb(main):002:0> require 'net/http'
=> true
Whereas on my OSX dev machine running Ruby 1.8.7:
Code:
$ irb
>> require 'iconv'
=> true
Any idea how to solve that beside downgrading to Ruby 1.8.x?