我正在尝试使用名为right_scraper的ruby gem。我已经将gem添加到我的gem文件中并且安装得很好。我使用了gems github页面(https://github.com/rightscale/right_scraper)
中的示例代码require 'rubygems'
require 'right_scraper'
scraper = RightScraper::Scraper.new(:basedir => '/tmp', :kind => :cookbook)
scraper.scrape(:type => :git, :url => 'git://github.com/rightscale/right_scraper.git')
运行此代码会返回以下错误:
NameError (uninitialized constant RightScraper::Scraper)
有谁知道什么是错的?