Method: Taskish::App#initialize

Defined in:
lib/taskish/app.rb

#initialize {|_self| ... } ⇒ App

Returns a new instance of App.

Yields:

  • (_self)

Yield Parameters:

  • _self (Taskish::App)

    the object that the method was called on



24
25
26
27
28
# File 'lib/taskish/app.rb', line 24

def initialize
  @command  = nil
  @files    = nil
  yield self if block_given?
end