lib/travis/cli/token.rb in travis-1.11.1 vs lib/travis/cli/token.rb in travis-1.12.0
- old
+ new
@@ -1,14 +1,16 @@
+# frozen_string_literal: true
+
require 'travis/cli'
module Travis
module CLI
class Token < ApiCommand
- description "outputs the secret API token"
+ description 'outputs the secret API token'
def run
authenticate
- say access_token, "Your access token is %s"
+ say access_token, 'Your access token is %s'
end
end
end
end