screenomat/lib/screenie/dsl/screen.rb
John Bintz 234a6734b3 stuff
2010-12-09 16:20:21 -05:00

48 lines
920 B
Ruby

module Screenie
module DSL
class Screen
attr_accessor :screen_id
def initialize(*options)
@options = options
@screen_id = nil
if @options.first.kind_of?(::Fixnum)
@screen_id = @options.shift
end
end
def stuff
output = [ %{-p #{@screen_id || 0} stuff} ]
if @options.first.kind_of?(::String)
output << %{"#{@options.first}\n"}
end
output * ' '
end
def screen
title = nil
if @options.last.kind_of?(::Hash)
opts = @options.last
title = opts[:title]
end
if @screen_id == 0
output = []
output << %{-p 0 title "#{title}"} if title
else
output = %w{screen}
output << %{-t "#{title}"} if title
output << (@screen_id || 0)
end
output * ' '
end
end
end
end