`require':无法加载这样的文件 - rest_client(LoadError)

时间:2015-09-02 17:12:11

标签: ruby-on-rails ruby

我正在构建第一批宝石,我想将rest_client宝石用于我的宝石,我已将gem 'rest_client', '~> 1.8.3'放在lib/foo/Gemfile上,而这是我的文件

# lib/foo/lib/foo.rb

require 'rest_client'
require 'json'
require "foo/version"

module Foo
 # other stuff here
end

当我运行rails c时出现此错误:

/home/user/.rvm/gems/ruby-2.1.2/gems/activesupport-4.2.1/lib/active_support/dependencies.rb:274:in `require': cannot load such file -- rest_client (LoadError)

注意:我已经在rails应用程序中安装了我的宝石

2 个答案:

答案 0 :(得分:0)

我认为您需要尝试require 'rest-client'

答案 1 :(得分:0)

尝试以下 -

require 'rest-client'