轨道c中未显示环境变量



我想问一下rails上的ruby,可以使用application.yml 设置环境变量

我在应用程序中有这样的代码。yml

defaults: &defaults
  STORE_URL: https://localhost:3000/
development:
  <<: *defaults
test:
  <<: *defaults
production:
  <<: *defaults

并在application.rb 上设置配置

Bundler.require(*Rails.groups)
if File.exists?(File.expand_path('../application.yml', __FILE__))
  config = YAML.load(File.read(File.expand_path('../application.yml', __FILE__)))
  config.merge! config.fetch(Rails.env, {})
  config.each do |key, value|
    ENV[key] ||= value.to_s unless value.kind_of? Hash
  end
end

并将此代码添加到.gitignore

config/appication.yml
.project

当我在终端上测试时,输出应该是这样的

[1] pry(main)> ENV
=> {"Test1"=>"Tester1",
    "Test2"=>"Tester2",
    "Test3"=>"Tester3"}

当i run rails c development 时,它应该只添加一些Key和Value

在Rails 3.0.20和Ruby 1.9.3p545中,当我在application.yml上通过类型或添加新的Key和Value进行测试时,它的工作非常简单。但是,在Rails 4.1.5和Ruby 2.0.0p541上,它不会像那样

完整应用程序.rb

require File.expand_path('../boot', __FILE__)
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
if File.exists?(File.expand_path('../application.yml', __FILE__))
  config = YAML.load(File.read(File.expand_path('../application.yml', __FILE__)))
  config.merge! config.fetch(Rails.env, {})
  config.each do |key, value|
    ENV[key] ||= value.to_s unless value.kind_of? Hash
  end
end
module ModuleUpgrade
  class Application < Rails::Application
  end
end

需要你们的帮助伙计们!感谢

我会改变两件事。如何加载文件以及如何获取和合并环境的子哈希:

Bundler.require(*Rails.groups)
file = Rails.root.join('config', 'application.yml')
if File.exists?(file)
  config = YAML.load(file).fetch(Rails.env, {})
  config.each do |key, value|
    ENV[key] ||= value unless value.kind_of?(Hash)
  end
end

我认为您为application.ymlFile.expand_path('../application.yml', __FILE__)指定的路径不准确。试试这个:

app_config = File.join(Rails.root, 'config', 'application.yml')
if File.exists?(app_config)
  config = YAML.load(File.read(app_config))
  config.merge! config.fetch(Rails.env, {})
  config.each do |key, value|
    ENV[key] ||= value.to_s unless value.kind_of? Hash
  end
end

或者,如果你不想自己滚动,费加罗宝石会让你更容易。

相关内容

  • 没有找到相关文章

最新更新