Sha256: dc3f1739da96245a8bd4c868efbf94ec42263672a7a0a36de76727dc434de648

Contents?: true

Size: 553 Bytes

Versions: 3

Compression:

Stored size: 553 Bytes

Contents

module Inch
  module CLI
    module Command
      module Options
        class Inspect < BaseObject

          def descriptions
            [
              "",
              "Example: " + "$ inch inspect lib/**/*.rb Foo::Bar#initialize".color(:cyan),
              "",
              "Shows one or more objects in detail."
            ]
          end

          def verify
            if object_names.empty?
              kill # "Provide a name to an object to show it's evaluation."
            end
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
inch-0.5.0.rc3 lib/inch/cli/command/options/inspect.rb
inch-0.5.0.rc2 lib/inch/cli/command/options/inspect.rb
inch-0.5.0.rc1 lib/inch/cli/command/options/inspect.rb