0
私はちょっと宝石がインストールされていて、ApplicationControllerでバージョン3のAPIを使用するように設定していますが、上記のエラーが発生しています。ここに私のapplication_controller.rbの始まりは未初期化定数ApplicationController :: Bitly
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') }
はいGemfileにあり、私は 'bundle install'を実行しました。 – Chris