Method: Codebuild::Core#env
- Defined in:
- lib/codebuild/core.rb
#env ⇒ Object
14 15 16 17 18 19 |
# File 'lib/codebuild/core.rb', line 14 def env # 2-way binding cb_env = env_from_profile || 'development' cb_env = ENV['CB_ENV'] if ENV['CB_ENV'] # highest precedence ActiveSupport::StringInquirer.new(cb_env) end |