TalentBox/harpy

View on GitHub
lib/harpy/gem_version.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Harpy
  def self.gem_version
    Gem::Version.new VERSION::STRING
  end

  module VERSION
    MAJOR = 1
    MINOR = 1
    TINY  = 0
    PRE   = nil

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