lib/inch/cli/command/show.rb in inch-0.5.0.rc3 vs lib/inch/cli/command/show.rb in inch-0.5.0.rc4

- old
+ new

@@ -1,19 +1,19 @@ -require 'inch/cli/command/options/show' -require 'inch/cli/command/output/show' +require "inch/cli/command/options/show" +require "inch/cli/command/output/show" module Inch module CLI module Command class Show < BaseObject register_command_as :show def description - 'Shows an object with its results' + "Shows an object with its results" end def usage - 'Usage: inch show [paths] OBJECT_NAME [[OBJECT_NAME2] ...] [options]' + "Usage: inch show [paths] OBJECT_NAME [[OBJECT_NAME2] ...] [options]" end def run(*args) prepare_objects(*args) Output::Show.new(@options, objects)