lib/chamber/binary/runner.rb in chamber-3.0.0 vs lib/chamber/binary/runner.rb in chamber-3.0.1

- old
+ new

@@ -1,12 +1,9 @@ # frozen_string_literal: true require 'thor' require 'chamber/rubinius_fix' -require 'chamber/binary/travis' -require 'chamber/binary/heroku' -require 'chamber/binary/circle_ci' require 'chamber/commands/show' require 'chamber/commands/files' require 'chamber/commands/secure' require 'chamber/commands/sign' require 'chamber/commands/verify' @@ -57,24 +54,9 @@ class_option :encryption_keys, type: :array, desc: 'The path to or contents of the public key (or keys) associated ' \ 'with the project (typically .chamber.pub.pem)' - - ################################################################################ - - desc 'travis SUBCOMMAND ...ARGS', 'For manipulating Travis CI environment variables' - subcommand 'travis', Chamber::Binary::Travis - - ################################################################################ - - desc 'heroku SUBCOMMAND ...ARGS', 'For manipulating Heroku environment variables' - subcommand 'heroku', Chamber::Binary::Heroku - - ################################################################################ - - desc 'circleci SUBCOMMAND ...ARGS', 'For manipulating CircleCI environment variables' - subcommand 'circleci', Chamber::Binary::CircleCi ################################################################################ desc 'show', 'Displays the list of settings and their values'