lib/eve_online/esi/models/coordinates.rb in eve_online-0.29.0 vs lib/eve_online/esi/models/coordinates.rb in eve_online-0.30.0
- old
+ new
@@ -6,24 +6,24 @@
class Coordinates < Base
def as_json
{
x: x,
y: y,
- z: z
+ z: z,
}
end
# TODO: check 'options && '
def x
- options && options['x']
+ options && options["x"]
end
def y
- options && options['y']
+ options && options["y"]
end
def z
- options && options['z']
+ options && options["z"]
end
end
end
end
end