Sha256: 70ff867fd38d6380eba185ea1556cbbae291b0a8e0c3958bc6facead33534c0d
Contents?: true
Size: 994 Bytes
Versions: 3
Compression:
Stored size: 994 Bytes
Contents
# encoding: UTF-8 # frozen_string_literal: true # Requirements # ======================================================================= # Stdlib # ----------------------------------------------------------------------- require 'pathname' # Namespace # ======================================================================= module NRSER # Definitions # ======================================================================= module Notify # Absolute, expanded path to the gem's root directory. # # Here in `//lib/nrser/version` so that it can be used via # # require 'nrser/version' # # without loading the entire module. # # @return [Pathname] # ROOT = ( Pathname.new( __FILE__ ).dirname / '..' / '..' / '..' ).expand_path # String version of the gem. # # @return [String] # VERSION = (ROOT / 'VERSION').read end # /Namespace # ======================================================================= end # module NRSER
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nrser-notify-0.1.2 | lib/nrser/notify/version.rb |
nrser-notify-0.1.1 | lib/nrser/notify/version.rb |
nrser-notify-0.1.0 | lib/nrser/notify/version.rb |