Sha256: 811fc267e4829ca7d08bdc2dc06905eee8ef2620910e3b0e82cf97ceaafd36a1

Contents?: true

Size: 336 Bytes

Versions: 1

Compression:

Stored size: 336 Bytes

Contents

module RailsSecurityBackports
  class Version
    MAJOR = 0
    MINOR = 0
    PATCH = 1
    STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"

    class << self
      # A String representing the current version of this 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
rails-security-backports-0.0.1 lib/rails-security-backports/version.rb