Class: Whenever::Job::Default
- Inherits:
-
Object
- Object
- Whenever::Job::Default
- Defined in:
- lib/job_types/default.rb
Instance Attribute Summary collapse
-
#at ⇒ Object
Returns the value of attribute at.
-
#cron_log ⇒ Object
Returns the value of attribute cron_log.
-
#hour_range ⇒ Object
Returns the value of attribute hour_range.
-
#task ⇒ Object
Returns the value of attribute task.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Default
constructor
A new instance of Default.
- #output ⇒ Object
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( = {}) @task = [:task] @at = [:at] @hour_range = [:hour_range] @cron_log = [:cron_log] @environment = [:environment] || :production @path = [:path] || Whenever.path end |
Instance Attribute Details
#at ⇒ Object
Returns the value of attribute at.
5 6 7 |
# File 'lib/job_types/default.rb', line 5 def at @at end |
#cron_log ⇒ Object
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_range ⇒ Object
Returns the value of attribute hour_range.
5 6 7 |
# File 'lib/job_types/default.rb', line 5 def hour_range @hour_range end |
#task ⇒ Object
Returns the value of attribute task.
5 6 7 |
# File 'lib/job_types/default.rb', line 5 def task @task end |
Instance Method Details
#output ⇒ Object
16 17 18 |
# File 'lib/job_types/default.rb', line 16 def output task end |