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
15
# File 'lib/job_types/default.rb', line 7

def initialize(options = {})
  @task           = options[:task]
  @at             = options[:at]
  @cron_log       = options[:cron_log]
  @environment    = options[:environment] || :production
  @framework_env  = options[:framework_env] || "RAILS_ENV"
  @rake_path      = options[:rake_path] || "/usr/bin/env rake"
  @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

#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



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

def output
  task
end