module Sidekiq::Repeat::MiniIceCube::IceCubeDslErrorHandling

Constants

IceCubeSyntaxError

Public Instance Methods

method_missing(meth, *args, &block) click to toggle source
# File lib/sidekiq/repeat/mini_ice_cube.rb, line 16
def method_missing(meth, *args, &block)
  unsupported("method not found: #{meth}")
end
unsupported(msg) click to toggle source
# File lib/sidekiq/repeat/mini_ice_cube.rb, line 12
def unsupported(msg)
  fail IceCubeSyntaxError, "Sidekiq::Repeat: Unsupported ice_cube syntax. Please refer to the documentation. (#{msg})"
end