Module: Proxeze::Hooks

Defined in:
lib/proxeze/instance_methods.rb

Instance Method Summary collapse

Instance Method Details

#after(mid, *args, &blk) ⇒ Object



18
19
20
# File 'lib/proxeze/instance_methods.rb', line 18

def after mid, *args, &blk
  self.class.after mid, *args, &blk
end

#after_all(*args, &blk) ⇒ Object



22
23
24
# File 'lib/proxeze/instance_methods.rb', line 22

def after_all *args, &blk
  self.class.after_all *args, &blk
end

#before(mid, *args, &blk) ⇒ Object



26
27
28
# File 'lib/proxeze/instance_methods.rb', line 26

def before mid, *args, &blk
  self.class.before mid, *args, &blk
end

#before_all(*args, &blk) ⇒ Object



30
31
32
# File 'lib/proxeze/instance_methods.rb', line 30

def before_all *args, &blk
  self.class.before_all *args, &blk
end