Module: Resque::Helpers
Overview
Methods used by various classes in Resque.
Instance Method Summary collapse
-
#classify(dashed_word) ⇒ Object
Given a word with dashes, returns a camel cased version of it.
-
#constantize(camel_cased_word) ⇒ Object
Given a camel cased word, returns the constant it represents.
-
#decode(object) ⇒ Object
Given a string, returns a Ruby object.
-
#encode(object) ⇒ Object
Given a Ruby object, returns a string suitable for storage in a queue.
-
#mongo ⇒ Object
Direct access to the Redis instance.
- #mongo_stats ⇒ Object
- #mongo_workers ⇒ Object
Instance Method Details
#classify(dashed_word) ⇒ Object
Given a word with dashes, returns a camel cased version of it.
classify(‘job-name’) # => ‘JobName’
47 48 49 |
# File 'lib/resque/helpers.rb', line 47 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
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/resque/helpers.rb', line 54 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.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/resque/helpers.rb', line 28 def decode(object) return unless object if defined? Yajl begin Yajl::Parser.parse(object, :check_utf8 => false) rescue Yajl::ParseError end else begin JSON.parse(object) rescue JSON::ParserError end end end |
#encode(object) ⇒ Object
Given a Ruby object, returns a string suitable for storage in a queue.
19 20 21 22 23 24 25 |
# File 'lib/resque/helpers.rb', line 19 def encode(object) if defined? Yajl Yajl::Encoder.encode(object) else object.to_json end end |
#mongo ⇒ Object
Direct access to the Redis instance.
5 6 7 |
# File 'lib/resque/helpers.rb', line 5 def mongo Resque.mongo end |
#mongo_stats ⇒ Object
13 14 15 |
# File 'lib/resque/helpers.rb', line 13 def mongo_stats Resque.mongo_stats end |
#mongo_workers ⇒ Object
9 10 11 |
# File 'lib/resque/helpers.rb', line 9 def mongo_workers Resque.mongo_workers end |