1

Rails 4.0.1 を Heroku にデプロイしていますが、プリコンパイルしようとすると次のエラーが発生します。

$ rake assets:precompile
rake aborted!
uninitialized constant SampleApp
c:/Sites/sampleapp/config/initializers/secret_token.rb:27:in `<top (required)>'
c:/Sites/sampleapp/config/environment.rb:5:in `<top (required)>'
Tasks: TOP => environment
(See full trace by running task with --trace)

これが私のenvironment.rbです:

# Load the Rails application.
require File.expand_path('../application', __FILE__)

# Initialize the Rails application.
Sampleapp::Application.initialize!

問題が見つかった secret_token の行:

SampleApp::Application.config.secret_key_base = secure_token

そして、これは私のapplication.rbです:

require File.expand_path('../boot', __FILE__)

# Pick the frameworks you want:
require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "sprockets/railtie"
# require "rails/test_unit/railtie"

Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env)

module Sampleapp
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.

    # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
    # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
    # config.time_zone = 'Central Time (US & Canada)'

    # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
    # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
    # config.i18n.default_locale = :de
  end
end
4

1 に答える 1

0

によるとapplication.rb、あなたのプロジェクトはSampleappその名前として を使用しています。そのため、すべてのコア ファイルが、オプション設定で、大文字と小文字を含めて同一の名前を使用していることを確認してください。

# config/initializers/secret_token.rb
Sampleapp::Application.config.secret_key_base = secure_token
于 2013-11-12T01:02:35.343 に答える