Sha256: 548603788dc00adcd8e0349e0bf298d6941012e98c5a34eb35e199f668c2ac4d

Contents?: true

Size: 409 Bytes

Versions: 8

Compression:

Stored size: 409 Bytes

Contents

module Inch
  module CLI
    module Command
      class Show < BaseObject
        def description
          'Shows an object with its results'
        end

        def usage
          'Usage: inch show [paths] OBJECT_NAME [[OBJECT_NAME2] ...] [options]'
        end

        def run(*args)
          prepare_objects(*args)
          Output::Show.new(@options, objects)
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
inch-0.2.2 lib/inch/cli/command/show.rb
inch-0.2.1 lib/inch/cli/command/show.rb
inch-0.2.0 lib/inch/cli/command/show.rb
inch-0.1.4 lib/inch/cli/command/show.rb
inch-0.1.3 lib/inch/cli/command/show.rb
inch-0.1.2 lib/inch/cli/command/show.rb
inch-0.1.1 lib/inch/cli/command/show.rb
inch-0.1.0 lib/inch/cli/command/show.rb