Sha256: 0d2c5f2bfa3700a2f1a5bda15327ba5af753c67da44a788568b2b33505a80343

Contents?: true

Size: 327 Bytes

Versions: 1

Compression:

Stored size: 327 Bytes

Contents

module OEmbed
  class Version
    MAJOR = 0
    MINOR = 8
    PATCH = 13
    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.8.13 lib/oembed/version.rb