Sha256: 684626f7b0acee15023f68eb5dc9b000ef6146d2509b1f700c80e9eb01faed3b

Contents?: true

Size: 404 Bytes

Versions: 5

Compression:

Stored size: 404 Bytes

Contents

module Inch
  module CLI
    module Command
      class Inspect < BaseObject
        def description
          'Inspects an object'
        end

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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
inch-0.1.4 lib/inch/cli/command/inspect.rb
inch-0.1.3 lib/inch/cli/command/inspect.rb
inch-0.1.2 lib/inch/cli/command/inspect.rb
inch-0.1.1 lib/inch/cli/command/inspect.rb
inch-0.1.0 lib/inch/cli/command/inspect.rb