[MacRuby] #1423: LoadError with activerecord
#1423: LoadError with activerecord ---------------------------------+------------------------------------------ Reporter: scott@… | Owner: lsansonetti@… Type: defect | Status: new Priority: blocker | Milestone: Component: MacRuby | Keywords: ---------------------------------+------------------------------------------ This is on Lion, using the ToT install of MacRuby ('git clone git://github.com/MacRuby/MacRuby.git macruby') Even after calling {{{ sudo macgem install activerecord }}} such that {{{ scottc: macruby(master) scottc$ macgem list *** LOCAL GEMS *** activemodel (3.1.3) activerecord (3.1.3) activesupport (3.1.3) arel (2.2.1) builder (3.0.0) i18n (0.6.0) multi_json (1.0.3) tzinfo (0.3.31) }}} Then, calling either of these two {{{ macruby -r rubygems -e 'require "activerecord"' macruby -e 'require "activerecord"' }}} just yields {{{ -e:1:in `<main>': no such file to load -- activerecord (LoadError) }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/1423> MacRuby <http://macruby.org/>
#1423: LoadError with activerecord ---------------------------------+------------------------------------------ Reporter: scott@… | Owner: lsansonetti@… Type: defect | Status: closed Priority: blocker | Milestone: Component: MacRuby | Resolution: invalid Keywords: | ---------------------------------+------------------------------------------ Changes (by watson1978@…): * status: new => closed * resolution: => invalid Comment: I think you would try to {{{ $ macruby -r rubygems -e 'require "active_record"; p 42' 42 }}} [[BR]] And, MacRuby can't autoload 'rubygems' yet (#855). [[BR]] So, following command (without '-r rubygems') occurs LoadError {{{ $ macruby -e 'require "active_record"' -e:1:in `<main>': no such file to load -- active_record (LoadError) }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/1423#comment:1> MacRuby <http://macruby.org/>
participants (1)
-
MacRuby