Sha256: b6efc8d287439899d96c892deb36186ea03db18ff2793480da09a4a4a350303f

Contents?: true

Size: 515 Bytes

Versions: 1

Compression:

Stored size: 515 Bytes

Contents

##
# See rzo.rb for the main implementation.  This is a light-weight module
# strictly for version information.
module Rzo
  # The authoritative location of the rzo version.  It should be possible to
  # `require 'rizzo/version'` and access `Rizzo::VERSION` from third party
  # libraries and the gemspec.  The version is defined as a Semantic Version.
  VERSION = '0.7.0'.freeze

  ##
  # Return the SemVer string, e.g. `"0.1.0"`
  #
  # @return [String] e.g. "1.0.0"
  def self.version
    Rzo::VERSION
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rzo-0.7.0 lib/rzo/version.rb