Class: Whenever::Job
- Inherits:
-
Object
- Object
- Whenever::Job
- Defined in:
- lib/whenever/job.rb
Instance Attribute Summary collapse
-
#at ⇒ Object
readonly
Returns the value of attribute at.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Job
constructor
A new instance of Job.
- #output ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Job
Returns a new instance of Job.
7 8 9 10 11 12 13 14 15 |
# File 'lib/whenever/job.rb', line 7 def initialize( = {}) @options = @at = .delete(:at) @template = .delete(:template) @job_template = .delete(:job_template) || ":job" @options[:output] = Whenever::Output::Redirection.new([:output]).to_s if .has_key?(:output) @options[:environment] ||= :production @options[:path] = Shellwords.shellescape(@options[:path] || Whenever.path) end |
Instance Attribute Details
#at ⇒ Object (readonly)
Returns the value of attribute at.
5 6 7 |
# File 'lib/whenever/job.rb', line 5 def at @at end |
Instance Method Details
#output ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/whenever/job.rb', line 17 def output job = process_template(@template, @options).strip out = process_template(@job_template, { :job => job }).strip if out =~ /\n/ raise ArgumentError, "Task contains newline" end out.gsub(/%/, '\%') end |