Sha256: ca547e87154482c4490b86e1825e8ee79ebf290003e4bd17b6071786e24bf136

Contents?: true

Size: 379 Bytes

Versions: 4

Compression:

Stored size: 379 Bytes

Contents

require 'command'
require 'commands/look'

require 'lookfile'

# Command 'lookfile status' implementation
class Status < Command
  def self.options_messages
    %(  status \t $ lookfile status
  \t\t - Show status of files on lookfile
    )
  end

  def self.command_name
    'status'
  end

  def self.parent
    Look
  end

  def self.run(*)
    puts Lookfile.status
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lookfile-0.1.5 lib/commands/status.rb
lookfile-0.1.4 lib/commands/status.rb
lookfile-0.1.3 lib/commands/status.rb
lookfile-0.1.2 lib/commands/status.rb