class PoiseDerived::Handler

A small event handler to install and uninstall our DSL addition so it only appears during attribute compilation. Is this a good idea?

@api private

Public Instance Methods

attribute_load_complete() click to toggle source
# File lib/poise_derived/handler.rb, line 35
def attribute_load_complete
  PoiseDerived::DSL.uninstall
end
attribute_load_start(count) click to toggle source
# File lib/poise_derived/handler.rb, line 31
def attribute_load_start(count)
  PoiseDerived::DSL.install
end