lib/xcmonkey/describer.rb in xcmonkey-0.3.0 vs lib/xcmonkey/describer.rb in xcmonkey-1.0.0

- old
+ new

@@ -1,10 +1,9 @@ class Describer - attr_accessor :udid, :x, :y, :driver + attr_accessor :x, :y, :driver def initialize(params) ensure_required_params(params) - self.udid = params[:udid] self.x = params[:x] self.y = params[:y] self.driver = Driver.new(params) end