Sha256: 30a309e4b1ab04491f21bded2f00fa105e1b61cb3b9dcb925e0df6fd0ca82458

Contents?: true

Size: 328 Bytes

Versions: 2

Compression:

Stored size: 328 Bytes

Contents

module OEmbed
  class Version
    MAJOR = 0
    MINOR = 17
    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

2 entries across 2 versions & 2 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/ruby-oembed-0.17.0/lib/oembed/version.rb
ruby-oembed-0.17.0 lib/oembed/version.rb