diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-10 08:47:02 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-10 08:47:02 +0200 |
commit | 274411458b30ba08a9e0adca0a0f5820e9a8648f (patch) | |
tree | 7f896cd7b30998c53b000e03ca7d1c66ef6f502c /lib/evendoors/space.rb | |
parent | f72393c031018d224318fb4aeff16b6e6c330327 (diff) | |
download | edoors-ruby-274411458b30ba08a9e0adca0a0f5820e9a8648f.zip edoors-ruby-274411458b30ba08a9e0adca0a0f5820e9a8648f.tar.gz |
Twirl merge with Space -> Spin is born
Diffstat (limited to 'lib/evendoors/space.rb')
-rw-r--r-- | lib/evendoors/space.rb | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/evendoors/space.rb b/lib/evendoors/space.rb deleted file mode 100644 index da13065..0000000 --- a/lib/evendoors/space.rb +++ /dev/null @@ -1,26 +0,0 @@ -#! /usr/bin/env ruby -# -*- coding: UTF-8 -*- - -# -module EvenDoors - # - class Space < Room - # - def initialize n, args={} - super n, nil - EvenDoors::Twirl.debug_errors = args[:debug_errors] || false - EvenDoors::Twirl.debug_routing = args[:debug_routing] || false - end - # - def twirl! - @spots.values.each do |spot| spot.start! end - EvenDoors::Twirl.run = true - EvenDoors::Twirl.twirl! - @spots.values.each do |spot| spot.stop! end - end - # - end - # -end -# -# EOF |