Sha256: e95e82d6d286b78323290c69724196b19d2affeecc9cb090e582373ff67a9081

Contents?: true

Size: 1.1 KB

Versions: 3

Compression:

Stored size: 1.1 KB

Contents

# vim:fileencoding=utf-8

module ResqueAdmin
  module Scheduler
    class Util
      # In order to upgrade to resque(1.25) which has deprecated following
      # methods, we just added these usefull helpers back to use in ResqueAdmin
      # Scheduler.  refer to:
      # https://github.com/resque/resque-scheduler/pull/273

      def self.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|
          args = Module.method(:const_get).arity != 1 ? [false] : []

          constant = if constant.const_defined?(name, *args)
                       constant.const_get(name)
                     else
                       constant.const_missing(name)
                     end
        end
        constant
      end

      def self.classify(dashed_word)
        dashed_word.split('-').map(&:capitalize).join
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
resque_admin-scheduler-1.1.8 lib/resque_admin/scheduler/util.rb
resque_admin-scheduler-1.0.4 lib/resque_admin/scheduler/util.rb
resque_admin-scheduler-1.0.3 lib/resque-admin/scheduler/util.rb