Module: Resque::Helpers

Included in:
Resque, Job, Job, Stat, Worker, Worker
Defined in:
lib/resque/helpers.rb

Overview

Methods used by various classes in Resque.

Instance Method Summary collapse

Instance Method Details

#after_forkObject

Direct access to the after_fork proc



15
16
17
# File 'lib/resque/helpers.rb', line 15

def after_fork
  Resque.after_fork  
end

#before_forkObject

Direct access to the before_fork proc



10
11
12
# File 'lib/resque/helpers.rb', line 10

def before_fork
  Resque.before_fork  
end

#classify(dashed_word) ⇒ Object

Given a word with dashes, returns a camel cased version of it.

classify(‘job-name’) # => ‘JobName’



43
44
45
# File 'lib/resque/helpers.rb', line 43

def classify(dashed_word)
  dashed_word.split('-').each { |part| part[0] = part[0].chr.upcase }.join
end

#constantize(camel_cased_word) ⇒ Object

Given a camel cased word, returns the constant it represents

constantize(‘JobName’) # => JobName



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/resque/helpers.rb', line 50

def constantize(camel_cased_word)
  camel_cased_word = camel_cased_word.to_s

  if camel_cased_word.include?('-')
    camel_cased_word = classify(camel_cased_word)
  end

  names = camel_cased_word.split('::')
  names.shift if names.empty? || names.first.empty?

  constant = Object
  names.each do |name|
    constant = constant.const_get(name) || constant.const_missing(name)
  end
  constant
end

#decode(object) ⇒ Object

Given a string, returns a Ruby object.



30
31
32
33
34
35
36
37
38
# File 'lib/resque/helpers.rb', line 30

def decode(object)
  return unless object

  if defined? Yajl
    Yajl::Parser.parse(object, :check_utf8 => false)
  else
    JSON.parse(object)
  end
end

#encode(object) ⇒ Object

Given a Ruby object, returns a string suitable for storage in a queue.



21
22
23
24
25
26
27
# File 'lib/resque/helpers.rb', line 21

def encode(object)
  if defined? Yajl
    Yajl::Encoder.encode(object)
  else
    object.to_json
  end
end

#redisObject

Direct access to the Redis instance.



5
6
7
# File 'lib/resque/helpers.rb', line 5

def redis
  Resque.redis
end