lib/hitcher/dsl.rb in Hitcher-0.1.2 vs lib/hitcher/dsl.rb in Hitcher-0.1.3
- old
+ new
@@ -10,11 +10,11 @@
Hitcher::Global.instance.glog
end # logger
def start(cont)
cont.each do |c|
- c = c.strip
- if not c =~ /^#/ and not c.empty?
+ cc = c.strip
+ if not cc =~ /^#/ #and not c.empty?
# ignoring comment
eeval(c)
end
end