Module: RailsEnvCredentials::EnvironmentLoading

Defined in:
lib/rails_env_credentials/command/environment_loading.rb

Instance Method Summary collapse

Instance Method Details

#editObject



5
6
7
8
9
# File 'lib/rails_env_credentials/command/environment_loading.rb', line 5

def edit
  extract_environment_option_from_argument
  ENV["RAILS_ENV"] = options[:environment]
  super
end

#showObject



11
12
13
14
15
# File 'lib/rails_env_credentials/command/environment_loading.rb', line 11

def show
  extract_environment_option_from_argument
  ENV["RAILS_ENV"] = options[:environment]
  super
end