在我的应用中,我正在使用configatron gem。问题是我不清楚我应该在哪里存储configatron设置。我将configatron.application_url = 'http://google.com/'
放在config / configatron / defaults.rb中,但这不起作用。在视图configatron.application_url
中显示#<Configatron::Store:0x000001035afe70>
答案 0 :(得分:1)
看起来你错过了安装步骤。在shell中运行以下代码(来自rails app目录):
rails generate configatron:install
它将生成适当的初始化程序(此初始化程序应加载您的configatron文件)。
有关Rails和configatron的更多详细信息,请随时咨询Rails section on configatron GitHub page。
答案 1 :(得分:0)
我明白了问题所在。在Configatron的github page开发人员建议安装3.0.0.rc1版本。我将Configatron降级到版本2.9.1,一切正常。感谢所有参与者!