2

我用 Mongoid、Devise 和 Omniauth 构建了一个用于 Facebook 登录的基本 Rails 应用程序。我在本地运行它没有问题,但是当我尝试推送到 Heroku 时,我收到了这个错误:

"/app/app/controllers/Users/omniauth_callbacks_controller.rb:1:in `': uninitialized     constant Users (NameError)"

运气不好,我已经用谷歌搜索了这个地狱。我已经提交了用户模型,我已经运行了“heroku run rake db:migrate”等。没有运气。这是我的堆栈。

Ruby 1.9.2
Rails 3.2.1

宝石文件:

require 'rbconfig'
HOST_OS = RbConfig::CONFIG['host_os']
source 'https://rubygems.org'
gem 'rails', '3.2.1'
group :assets do
gem 'sass-rails',   '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'

gem "bson_ext", ">= 1.6.1"
gem "mongoid"
gem "devise"
gem "zurb-foundation"
gem "omniauth"
gem 'omniauth-facebook'
gem 'gravatar_image_tag'

Gemfile.lock:

GEM
remote: https://rubygems.org/
specs:
actionmailer (3.2.1)
  actionpack (= 3.2.1)
  mail (~> 2.4.0)
actionpack (3.2.1)
  activemodel (= 3.2.1)
  activesupport (= 3.2.1)
  builder (~> 3.0.0)
  erubis (~> 2.7.0)
  journey (~> 1.0.1)
  rack (~> 1.4.0)
  rack-cache (~> 1.1)
  rack-test (~> 0.6.1)
  sprockets (~> 2.1.2)
activemodel (3.2.1)
  activesupport (= 3.2.1)
  builder (~> 3.0.0)
activerecord (3.2.1)
  activemodel (= 3.2.1)
  activesupport (= 3.2.1)
  arel (~> 3.0.0)
  tzinfo (~> 0.3.29)
activeresource (3.2.1)
  activemodel (= 3.2.1)
  activesupport (= 3.2.1)
activesupport (3.2.1)
  i18n (~> 0.6)
  multi_json (~> 1.0)
addressable (2.2.7)
arel (3.0.2)
bcrypt-ruby (3.0.1)
bson (1.6.1)
bson_ext (1.6.1)
  bson (~> 1.6.1)
builder (3.0.0)
coffee-rails (3.2.2)
  coffee-script (>= 2.2.0)
  railties (~> 3.2.0)
coffee-script (2.2.0)
  coffee-script-source
  execjs
coffee-script-source (1.2.0)
devise (2.0.4)
  bcrypt-ruby (~> 3.0)
  orm_adapter (~> 0.0.3)
  railties (~> 3.1)
  warden (~> 1.1.1)
erubis (2.7.0)
execjs (1.3.0)
  multi_json (~> 1.0)
faraday (0.7.6)
  addressable (~> 2.2)
  multipart-post (~> 1.1)
  rack (~> 1.1)
gravatar_image_tag (1.0.0)
hashie (1.2.0)
hike (1.2.1)
i18n (0.6.0)
journey (1.0.3)
jquery-rails (2.0.2)
  railties (>= 3.2.0, < 5.0)
  thor (~> 0.14)
json (1.6.6)
mail (2.4.4)
  i18n (>= 0.4.0)
  mime-types (~> 1.16)
  treetop (~> 1.4.8)
mime-types (1.18)
mongo (1.6.1)
  bson (~> 1.6.1)
mongoid (2.4.7)
  activemodel (~> 3.1)
  mongo (~> 1.3)
  tzinfo (~> 0.3.22)
multi_json (1.2.0)
multipart-post (1.1.5)
oauth2 (0.5.2)
  faraday (~> 0.7)
  multi_json (~> 1.0)
omniauth (1.0.3)
  hashie (~> 1.2)
  rack
omniauth-facebook (1.2.0)
  omniauth-oauth2 (~> 1.0.0)
omniauth-oauth2 (1.0.0)
  oauth2 (~> 0.5.0)
  omniauth (~> 1.0)
orm_adapter (0.0.7)
polyglot (0.3.3)
rack (1.4.1)
rack-cache (1.2)
  rack (>= 0.4)
rack-ssl (1.3.2)
  rack
rack-test (0.6.1)
  rack (>= 1.0)
rails (3.2.1)
  actionmailer (= 3.2.1)
  actionpack (= 3.2.1)
  activerecord (= 3.2.1)
  activeresource (= 3.2.1)
  activesupport (= 3.2.1)
  bundler (~> 1.0)
  railties (= 3.2.1)
railties (3.2.1)
  actionpack (= 3.2.1)
  activesupport (= 3.2.1)
  rack-ssl (~> 1.3.2)
  rake (>= 0.8.7)
  rdoc (~> 3.4)
  thor (~> 0.14.6)
rake (0.9.2.2)
rdoc (3.12)
  json (~> 1.4)
sass (3.1.15)
sass-rails (3.2.5)
  railties (~> 3.2.0)
  sass (>= 3.1.10)
  tilt (~> 1.3)
sprockets (2.1.2)
  hike (~> 1.2)
  rack (~> 1.0)
  tilt (~> 1.1, != 1.3.0)
thor (0.14.6)
tilt (1.3.3)
treetop (1.4.10)
  polyglot
  polyglot (>= 0.3.1)
tzinfo (0.3.32)
uglifier (1.2.4)
  execjs (>= 0.3.0)
  multi_json (>= 1.0.2)
warden (1.1.1)
  rack (>= 1.0)
zurb-foundation (2.2.0.2)
  jquery-rails (>= 1.0)
  rails (~> 3.1)

PLATFORMS
ruby

DEPENDENCIES
 bson_ext (>= 1.6.1)
 coffee-rails (~> 3.2.1)
 devise
 gravatar_image_tag
 jquery-rails
 mongoid
 omniauth
 omniauth-facebook
 rails (= 3.2.1)
 sass-rails (~> 3.2.3)
 uglifier (>= 1.0.3)
 zurb-foundation

控制器:

class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
  def facebook
  # You need to implement the method below in your model
@user = User.find_for_facebook_oauth(request.env["omniauth.auth"], current_user)

if @user.persisted?
  flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Facebook"
  sign_in_and_redirect @user, :event => :authentication
else
  session["devise.facebook_data"] = request.env["omniauth.auth"]
  redirect_to new_user_registration_url
end
end
end

有什么想法吗 ?

4

3 回答 3

8

我有这个问题;我知道这是一个迟到的答案,但我想为需要它的人添加这个。

确保您的 OmniauthCallbacksController 在users文件夹中。"app/controllers/users/omniauth_callbacks_controller.rb"

于 2012-09-25T19:37:53.090 回答
1

只是想我会补充一点,我遇到了这个问题,并且上述解决方案对我不起作用。事实证明,在我的情况下,Devise 将用户子文件夹的名称(/app/app/controllers/Users)大写。从 git 中删除文件夹,然后用正确的“users”(/app/app/controllers/users)小写名称读取它解决了我的问题。

于 2016-04-25T20:58:32.877 回答
0

不太可能,但是如果您使用“rails generate scaffold”或“rails generate controller”来创建控制器,则需要“git add -A”将所有新创建的文件添加到您的存储库中。(1) git add -A (2) git commit -m "new files added" (3) git push [假设你也在使用远程仓库] (4) git push heroku master (5) heroku run rake db:迁移

这将是一个“新手错误”,但会解释上面的错误。别问我怎么知道的!

于 2015-02-27T10:37:09.743 回答