lib/eve_online/esi/models/blueprint.rb in eve_online-0.29.0 vs lib/eve_online/esi/models/blueprint.rb in eve_online-0.30.0

- old
+ new

@@ -11,43 +11,43 @@ location_id: location_id, material_efficiency: material_efficiency, quantity: quantity, runs: runs, time_efficiency: time_efficiency, - type_id: type_id + type_id: type_id, } end def item_id - options['item_id'] + options["item_id"] end def location_flag - options['location_flag'] + options["location_flag"] end def location_id - options['location_id'] + options["location_id"] end def material_efficiency - options['material_efficiency'] + options["material_efficiency"] end def quantity - options['quantity'] + options["quantity"] end def runs - options['runs'] + options["runs"] end def time_efficiency - options['time_efficiency'] + options["time_efficiency"] end def type_id - options['type_id'] + options["type_id"] end end end end end