Sha256: 2c60ca6468d8b6c3e49beac460e497dafda8758f6593a248cf0b0bf31c254073

Contents?: true

Size: 377 Bytes

Versions: 1

Compression:

Stored size: 377 Bytes

Contents

# frozen_string_literal: true

module RefactoredInvention # :nodoc:
  # Returns the version of the currently loaded Refactored Invention as a <tt>Gem::Version</tt>.
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 1
    MINOR = 0
    TINY  = 0
    PRE   = "rc4"

    STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
refactored_invention-1.0.0.rc4 lib/refactored_invention/gem_version.rb