Class: Chamber::Commands::Travis::Secure
- Includes:
- Securable, Chamber::Commands::Travis
- Defined in:
- lib/chamber/commands/travis/secure.rb
Instance Attribute Summary
Attributes inherited from Base
#chamber, #dry_run, #rootpath, #shell
Instance Method Summary collapse
Methods included from Securable
Methods inherited from Base
Instance Method Details
#call ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/chamber/commands/travis/secure.rb', line 14 def call securable_environment_variables.each do |key, value| if dry_run shell.say_status 'encrypt', key, :blue else command = first_environment_variable?(key) ? '--override' : '--append' shell.say_status 'encrypt', key, :green travis_encrypt("#{command} #{key}=#{value}") end end end |