Sha256: e4e717c83fbf20606594499cc239756bee41ae40a6e448f9a61cad03d47a1665

Contents?: true

Size: 428 Bytes

Versions: 1

Compression:

Stored size: 428 Bytes

Contents

# frozen_string_literal: true

module StandupMD
  ##
  # Module that contains all gem version information. Follows semantic
  # versioning. Read: https://semver.org/
  module Version

    ##
    # Major version.
    MAJOR = 0

    ##
    # Minor version.
    MINOR = 3

    ##
    # Patch version.
    PATCH = 9

    ##
    # Version as +MAJOR.MINOR.PATCH+
    def self.to_s
      "#{MAJOR}.#{MINOR}.#{PATCH}"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
standup_md-0.3.9 lib/standup_md/version.rb