Sha256: 42c491fd89c1a802f57f1718ec5992ae8ba452f08e5bc4ff96243b40268955ee

Contents?: true

Size: 320 Bytes

Versions: 1

Compression:

Stored size: 320 Bytes

Contents

module MiniMagick
  ##
  # Returns the version of the currently loaded MiniMagick as
  # a <tt>Gem::Version</tt>.
  def self.version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 3
    MINOR = 8
    TINY  = 1
    PRE   = nil

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mini_magick-3.8.1 lib/mini_magick/version.rb