Railsエンジンコードがあります。ただし、Rails::Engineにはconfig.session_store変数がありません。
module Admin
class Engine < ::Rails::Engine
isolate_namespace Admin
config.autoload_paths << File.expand_path("../..", __FILE__)
config.session_store :active_record_store
config.generators do |g|
g.javascript_engine :coffee
g.stylesheet_engine :less
g.template_engine :haml
g.test_framework :rspec, :view_specs => false
end
end
end
データベースセッションストレージを使用するにはどうすればよいですか?