Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created February 8, 2010 07:57
Show Gist options
  • Save kennethkalmer/297971 to your computer and use it in GitHub Desktop.
Save kennethkalmer/297971 to your computer and use it in GitHub Desktop.
# racksh in ruote-kit project (Ruby 1.9.1)
ruby-1.9.1-p378 > RuoteKit.engine.context.plist.send :get_list
=> {"type"=>"configurations", "_id"=>"participant_list", "list"=>[["^.*$", ["Ruote::StorageParticipant", {}]]], "put_at"=>"2010/02/07 21:14:00.073761 UTC", "_rev"=>0}
ruby-1.9.1-p378 > RuoteKit.engine.register_participant :alpha do |wi|
ruby-1.9.1-p378 > puts "* alpha saw it"
ruby-1.9.1-p378 ?> end
ruby-1.9.1-p378 > RuoteKit.engine.context.plist.send :get_list
=> {"type"=>"configurations", "_id"=>"participant_list", "list"=>[["^.*$", ["Ruote::StorageParticipant", {}]], ["^alpha$", "inpa_:alpha"]], "put_at"=>"2010/02/08 07:55:41.237208 UTC", "_rev"=>1}
# racksh in ruote-kit project (Ruby 1.8.7)
ruby-1.8.7-p249 > RuoteKit.engine.context.plist.send(:get_list)
=> {"list"=>[["^alpha$", "inpa_:alpha"], ["^.*$", ["Ruote::StorageParticipant", {}]]], "_rev"=>2, "put_at"=>"2010-02-08 08:11:59.216159 UTC", "_id"=>"participant_list", "type"=>"configurations"}
ruby-1.8.7-p249 > RuoteKit.engine.register_participant :beta do |wi|
ruby-1.8.7-p249 > puts "* BETA in the house"
ruby-1.8.7-p249 ?> end
ruby-1.8.7-p249 > RuoteKit.engine.context.plist.send(:get_list)
=> {"list"=>[["^alpha$", "inpa_:alpha"], ["^.*$", ["Ruote::StorageParticipant", {}]], ["^beta$", "inpa_:beta"]], "_rev"=>3, "put_at"=>"2010-02-08 08:12:58.490426 UTC", "_id"=>"participant_list", "type"=>"configurations"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment