On Sunday, August 5, 2012 8:25:56 AM UTC-5, Dave Castellano wrote: > > Have Linguistics gem in gem list: > ... > libwebsocket (0.1.3) > linguistics (1.0.9) > mail (2.4.4, 2.4.3, 2.4.1)... > > but: > > require 'linguistics' > Linguistics::use( :en ) # extends Array, String, and Numeric > > gives error: LoadError: no such file to load — linguistics > > Using RVM on OSx > > and do have 2 gem paths: > > - GEM PATHS: > - /Users/dcastellano1/.rvm/gems/ruby-1.9.3-p0 > - /Users/dcastellano1/.rvm/gems/ruby-1.9.3-p0@global > > Could Linguistics be in the wrong path, and if so how can I check?? > > Thanks, > > Dave Castellano (beginner!) > > -- > Posted via http://www.ruby-forum.com/. >
Try: require 'rubygems' require 'linguistics' -- You received this message because you are subscribed to the Google Groups ruby-talk-google group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at https://groups.google.com/d/forum/ruby-talk-google?hl=en
