nandeck-ruby/lib/nandeck/definitions/margins.rb
2013-10-09 22:51:03 -04:00

15 lines
293 B
Ruby

module Nandeck
class Margins
def initialize(left_right, top_bottom)
@left_right, @top_bottom = left_right, top_bottom
end
def to_a
output = []
output << "MARGINS = #{@left_right}, #{@left_right}, #{@top_bottom}, #{@top_bottom}"
output
end
end
end