module Lagomorph

Constants

MetadataAdapter
QueueAdapter
QueueBuilder
VERSION

Public Class Methods

using_bunny?() click to toggle source
# File lib/lagomorph.rb, line 10
def self.using_bunny?
  using? 'bunny'
end
using_march_hare?() click to toggle source
# File lib/lagomorph.rb, line 5
def self.using_march_hare?
  using? 'march_hare'
end

Private Class Methods

using?(gem_name) click to toggle source
# File lib/lagomorph.rb, line 17
def self.using?(gem_name)
  !Gem.loaded_specs[gem_name].nil?
end