Method: Whenever::CommandLine#initialize

Defined in:
lib/whenever/command_line.rb

#initialize(options = {}) ⇒ CommandLine

Returns a new instance of CommandLine.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/whenever/command_line.rb', line 8

def initialize(options={})
  @options = options
  
  @options[:file]       ||= 'config/schedule.rb'
  @options[:identifier] ||= default_identifier
  
  unless File.exists?(@options[:file])
    warn("[fail] Can't find file: #{@options[:file]}")
    exit(1)
  end

  if @options[:update] && @options[:write]
    warn("[fail] Can't update AND write. choose one.")
    exit(1)
  end
end