lib/import/base.rb in tracksperanto-3.3.6 vs lib/import/base.rb in tracksperanto-3.3.7
- old
+ new
@@ -20,11 +20,11 @@
# The original width and height of the tracked image.
# If you need to know the width for your specific format and cannot autodetect it,
# Trakcksperanto will assign the passed width and height to the importer object before running
# the import. If not, you can replace the assigned values with your own. At the end of the import
# procedure, Tracksperanto will read the values from you again and will use the read values
- # for determining the original comp size. +width+ and +height+ MUST return integer values after
+ # for determining the original comp size. +width+ and +height+ MUST return unsigned integer values after
# the import completes
attr_accessor :width, :height
# These reader methods will raise when the values are nil
cast_to_int :width, :height
@@ -62,10 +62,10 @@
def report_progress(message)
@progress_block.call(message) if @progress_block
end
# The main method of the parser. Should
- # yield each tracker that has been fully parsed. After calling this method the caller can ask for
+ # yield each Tracker that has been fully parsed. After calling this method the caller can ask for
# width and height as well.
def each
end
end