module Spec::Matchers::DSL
def create(name, &declarations)
def create(name, &declarations) Spec.deprecate("Spec::Matchers.create","Spec::Matchers.define") define(name, &declarations) end
def define(name, &declarations)
def define(name, &declarations) define_method name do |*expected| Spec::Matchers::Matcher.new name, *expected, &declarations end end