Class: Whenever::Job::Default

Inherits:
Object
  • Object
show all
Defined in:
lib/job_types/default.rb

Direct Known Subclasses

RakeTask, Runner

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Default

Returns a new instance of Default.



7
8
9
10
11
12
13
14
# File 'lib/job_types/default.rb', line 7

def initialize(options = {})
  @task        = options[:task]
  @at          = options[:at]
  @hour_range  = options[:hour_range]
  @cron_log    = options[:cron_log]
  @environment = options[:environment] || :production
  @path        = options[:path] || Whenever.path
end

Instance Attribute Details

#atObject

Returns the value of attribute at.



5
6
7
# File 'lib/job_types/default.rb', line 5

def at
  @at
end

#cron_logObject

Returns the value of attribute cron_log.



5
6
7
# File 'lib/job_types/default.rb', line 5

def cron_log
  @cron_log
end

#hour_rangeObject

Returns the value of attribute hour_range.



5
6
7
# File 'lib/job_types/default.rb', line 5

def hour_range
  @hour_range
end

#taskObject

Returns the value of attribute task.



5
6
7
# File 'lib/job_types/default.rb', line 5

def task
  @task
end

Instance Method Details

#outputObject



16
17
18
# File 'lib/job_types/default.rb', line 16

def output
  task
end