Sha256: 82e340fa35b43babd86f63854bef20621e4cb98f241e615eb952330e0cc4419d

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.5.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.5.0 lib/rzo/version.rb