Sha256: d6f3979e8933c1d664aea6ba64e6205475609051c8617f62e699091c6ee58441

Contents?: true

Size: 447 Bytes

Versions: 4

Compression:

Stored size: 447 Bytes

Contents

# Fixture module declarations for backend detection testing

module GirlFriday
  class WorkQueue
  end
end

module Delayed
  module Job
  end
end

module Resque
end

module Qu
end

module Sidekiq
  module Client
  end

  module Worker
    def self.included(base)
      base.extend(ClassMethods)
    end

    module ClassMethods
      def sidekiq_options(opts = {})
      end

      def client_push(item)
      end
    end
  end
end

module QC
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
carrierwave_backgrounder-0.2.0 spec/support/backend_constants.rb
carrierwave_backgrounder-0.1.5 spec/support/backend_constants.rb
carrierwave_backgrounder-0.1.4 spec/support/backend_constants.rb
carrierwave_backgrounder-0.1.3 spec/support/backend_constants.rb