Sha256: 71f087516a49507aa897b22adc75fc4bf90566cdc7b3a80aa2241b53493a649a

Contents?: true

Size: 1.59 KB

Versions: 18

Compression:

Stored size: 1.59 KB

Contents

require 'trollop'

module SimpleDeploy
  module CLI

    class Attributes
      include Shared

      def show
        @opts = Trollop::options do
          version SimpleDeploy::VERSION
          banner <<-EOS

Show attributes for stack.

simple_deploy attributes -n STACK_NAME -e ENVIRONMENT

EOS
          opt :help, "Display Help"
          opt :as_command_args,
              "Displays the attributes in a format suitable for using on the command line"
          opt :environment, "Set the target environment", :type => :string
          opt :log_level, "Log level:  debug, info, warn, error", :type    => :string,
                                                                  :default => 'info'
          opt :name, "Stack name to manage", :type => :string
        end

        valid_options? :provided => @opts,
                       :required => [:environment, :name]

        SimpleDeploy.create_config @opts[:environment]
        SimpleDeploy.logger @opts[:log_level]
        @stack = Stack.new :name        => @opts[:name],
                           :environment => @opts[:environment]

        @opts[:as_command_args] ? command_args_output : default_output
      end

      def command_summary
        'Show attributes for stack'
      end

      private

      def attribute_data
        rescue_exceptions_and_exit do
          Hash[@stack.attributes.sort]
        end
      end

      def command_args_output
        puts attribute_data.map { |k, v| "-a #{k}=#{v}" }.join(' ')
      end

      def default_output
        attribute_data.each_pair { |k, v| puts "#{k}: #{v}" }
      end
    end

  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
simple_deploy-0.9.2 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.9.1 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.9.0 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.8.2 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.8.2.beta1 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.8.1.beta1 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.8.0 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.8 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.7 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.7.beta.1 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.6 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.6.beta.6 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.6.beta.5 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.6.beta.3 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.6.beta.1 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.5 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.4 lib/simple_deploy/cli/attributes.rb
simple_deploy-0.7.3 lib/simple_deploy/cli/attributes.rb