module GS1

GS1 module.

Application identifiers constants.

Version 18.0 Date: Jan 2018 Read more: www.gs1.org/standards/barcodes-epcrfid-id-keys/gs1-general-specifications Change log: www.gs1.org/genspecs/gscn_archive

Constants

AI_CLASSES
VERSION

Public Class Methods

configuration() click to toggle source
# File lib/gs1.rb, line 23
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/gs1.rb, line 27
def configure
  if block_given?
    yield configuration
  else
    configuration
  end
end