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(={}) = [:file] ||= 'config/schedule.rb' [:identifier] ||= default_identifier unless File.exists?([:file]) warn("[fail] Can't find file: #{@options[:file]}") exit(1) end if [:update] && [:write] warn("[fail] Can't update AND write. choose one.") exit(1) end end |