在我的 Web 应用程序中,我想访问我的初始化程序文件中的环境变量。我的初始化器文件看起来像(initializers/gcm_on_rails.rb)
configatron.gcm_on_rails.api_url = 'https://android.googleapis.com/gcm/send'
#configatron.gcm_on_rails.api_key = 'abc'
configatron.gcm_on_rails.api_key == ENV['GCM_API_KEY']
Rails.logger.debug"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ #{configatron.gcm_on_rails.api_key}"
configatron.gcm_on_rails.app_name = 'com.xyz'
configatron.gcm_on_rails.delivery_format = 'json'
并在我的 .bashrc 文件中添加了以下键值
export GCM_API_KEY="abc"
但我的记录器没有给我任何价值。这意味着我无法访问这些环境变量。我想访问这些变量。需要帮助...谢谢...