Class: Whenever::CommandLine
- Inherits:
-
Object
- Object
- Whenever::CommandLine
- Defined in:
- lib/whenever/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.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/whenever/command_line.rb', line 11 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], [:clear]].compact.length > 1 warn("[fail] Can only update, write or clear. Choose one.") exit(1) end end |
Class Method Details
.execute(options = {}) ⇒ Object
7 8 9 |
# File 'lib/whenever/command_line.rb', line 7 def self.execute(={}) new().run end |
Instance Method Details
#run ⇒ Object
28 29 30 31 32 33 34 35 36 37 |
# File 'lib/whenever/command_line.rb', line 28 def run if [:update] || [:clear] write_crontab(updated_crontab) elsif [:write] write_crontab(whenever_cron) else puts Whenever.cron() exit(0) end end |