Class: Whenever::CommandLine
- Inherits:
-
Object
- Object
- Whenever::CommandLine
- Defined in:
- lib/command_line.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ CommandLine
constructor
A new instance of CommandLine.
- #run ⇒ Object
Constructor Details
#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/command_line.rb', line 8 def initialize(={}) @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 |
Class Method Details
.execute(options = {}) ⇒ Object
4 5 6 |
# File 'lib/command_line.rb', line 4 def self.execute(={}) new().run end |