lib/chunky_png.rb in chunky_png-1.0.1 vs lib/chunky_png.rb in chunky_png-1.1.0

- old
+ new

@@ -23,11 +23,11 @@ # @author Willem van Bergen module ChunkyPNG # The current version of ChunkyPNG. This value will be updated # automatically by them <tt>gem:release</tt> rake task. - VERSION = "1.0.1" + VERSION = "1.1.0" ################################################### # PNG international standard defined constants ################################################### @@ -102,19 +102,19 @@ # Default exception class for ChunkyPNG class Exception < ::StandardError end - # Exception that is raised for an unsopported PNG image. + # Exception that is raised for an unsupported PNG image. class NotSupported < ChunkyPNG::Exception end # Exception that is raised if the PNG signature is not encountered at the # beginning of the file. class SignatureMismatch < ChunkyPNG::Exception end - # Exception that is raised if the CRC check for a block failes + # Exception that is raised if the CRC check for a block fails class CRCMismatch < ChunkyPNG::Exception end # Exception that is raised if an expectation fails. class ExpectationFailed < ChunkyPNG::Exception