module Montrose::Rule::ClassMethods

Public Instance Methods

apply_option(_opts) click to toggle source
# File lib/montrose/rule.rb, line 41
def apply_option(_opts)
  nil
end
apply_options?(opts) click to toggle source
# File lib/montrose/rule.rb, line 45
def apply_options?(opts)
  apply_options(opts)
end
from_options(opts) click to toggle source
# File lib/montrose/rule.rb, line 49
def from_options(opts)
  new(apply_options(opts)) if apply_options?(opts)
end