module Schmetterling::DSL

Public Instance Methods

After(*args, &block) click to toggle source
# File lib/schmetterling/dsl.rb, line 12
def After(*args, &block)
  Schmetterling::After.new(*args, &block)
end
Around(*args, &block) click to toggle source
# File lib/schmetterling/dsl.rb, line 16
def Around(*args, &block)
  Schmetterling::Around.new(*args, &block)
end
Before(*args, &block) click to toggle source
# File lib/schmetterling/dsl.rb, line 8
def Before(*args, &block)
  Schmetterling::Before.new(*args, &block)
end