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.
-
#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 15 |
# File 'lib/job_types/default.rb', line 7 def initialize( = {}) @task = [:task] @at = [:at] @cron_log = [:cron_log] @environment = [:environment] || :production @framework_env = [:framework_env] || "RAILS_ENV" @rake_path = [:rake_path] || "/usr/bin/env rake" @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 |
#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
17 18 19 |
# File 'lib/job_types/default.rb', line 17 def output task end |