Sha256: 62aafa91a43afc57b76009414111c394b78995f5dd9ab9cace58b5046eba8f20

Contents?: true

Size: 328 Bytes

Versions: 1

Compression:

Stored size: 328 Bytes

Contents

module OEmbed
  class Version
    MAJOR = 0
    MINOR = 11
    PATCH = 0
    STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"

    class << self
      # A String representing the current version of the OEmbed gem.
      def inspect
        STRING
      end
      alias_method :to_s, :inspect
    end
  end

  VERSION = Version::STRING
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-oembed-0.11.0 lib/oembed/version.rb