Created
May 21, 2013 18:30
-
-
Save simplay/5622120 to your computer and use it in GitHub Desktop.
event monitoring system - example for scope, blocks, procs, lambdas in ruby
source: metaprogramming-ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lambda { | |
setups = [] | |
events = {} | |
Kernel.send :define_method, :event do |name, &block| | |
events[name] = block | |
end | |
Kernel.send :define_method, :setup do |&block| | |
setups << block | |
end | |
Kernel.send :define_method, :each_event do |&block| | |
events.each_pair do |name, event| | |
block.call name, event | |
end | |
end | |
Kernel.send :define_method, :each_setup do |&block| | |
setups.each do |setup| | |
block.call setup | |
end | |
end | |
}.call | |
Dir.glob('*events.rb').each do |file| load file | |
each_event do |name, event| | |
env = Object.new each_setup do |setup| | |
env.instance_eval &setup | |
end | |
puts "ALERT: #{name}" if env.instance_eval &event | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment