tracksperanto 1.2.3 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/lib/pipeline/base.rb +2 -2
- data/lib/tracksperanto.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/pipeline/base.rb
CHANGED
|
@@ -44,7 +44,7 @@ class Tracksperanto::Pipeline::Base
|
|
|
44
44
|
@converted_keyframes, @converted_points = 0, 0
|
|
45
45
|
|
|
46
46
|
# Grab the input
|
|
47
|
-
read_data = File.open(from_input_file_path)
|
|
47
|
+
read_data = File.open(from_input_file_path, "rb")
|
|
48
48
|
|
|
49
49
|
# Assign the parser
|
|
50
50
|
importer = parser_class.new(:width => pix_w, :height => pix_h)
|
|
@@ -152,7 +152,7 @@ class Tracksperanto::Pipeline::Base
|
|
|
152
152
|
# Open the file for writing and register it to be closed automatically
|
|
153
153
|
def open_owned_export_file(path_to_file)
|
|
154
154
|
@ios ||= []
|
|
155
|
-
handle = File.open(path_to_file, "
|
|
155
|
+
handle = File.open(path_to_file, "wb")
|
|
156
156
|
@ios << handle
|
|
157
157
|
handle
|
|
158
158
|
end
|
data/lib/tracksperanto.rb
CHANGED