0

我安装了 bitly gem,并在我的 ApplicationController 中设置它以使用版本 3 的 API,但它抛出了上述错误。这是我的 application_controller.rb 的开头

class ApplicationController < ActionController::Base
  protect_from_forgery
  Bitly.use_api_version_3
  before_filter { @cart = find_or_create_cart_from_session }
  before_filter { @bitly = Bitly.new('myusername', 'XXXXXX_API_KEY_XXXXX') }
4

1 回答 1

0

你说你已经安装了 Gem,但是你的 Gemfile 中包含了它吗?如果 Gem 不在您的 Gemfile 中,您的应用程序将找不到它,这将导致未初始化的常量错误。

于 2012-04-11T17:40:54.617 回答