Sha256: 98ca9dd750dbf15a733128b46f9e1e39f268d622e8cfbde86372a0294b163305

Contents?: true

Size: 332 Bytes

Versions: 1

Compression:

Stored size: 332 Bytes

Contents

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