lib/travis/cli/encrypt.rb in travis-1.5.2 vs lib/travis/cli/encrypt.rb in travis-1.5.3
- old
+ new
@@ -2,9 +2,10 @@
require 'travis/cli'
module Travis
module CLI
class Encrypt < RepoCommand
+ description "encrypts values for the .travis.yml"
attr_accessor :config_key
on('-a', '--add [KEY]', 'adds it to .travis.yml under KEY (default: env.global)') do |c, value|
c.config_key = value || 'env.global'
end