Sha256: 3358ac5908ec3c44d3105f01f6737410999972f33ef884d8698b67b85edc40f2

Contents?: true

Size: 439 Bytes

Versions: 1

Compression:

Stored size: 439 Bytes

Contents

# frozen_string_literal: true

module Sidekiq
  module WebCustom
    MAJOR = 0  # With backwards incompatability. Requires annoucment and update documentation
    MINOR = 3  # With feature launch. Documentation of upgrade is useful via a changelog
    PATCH = 0  # With minor upgrades or patcing a small bug. No changelog necessary
    VERSION = [MAJOR,MINOR,PATCH].join('.')

    def self.get_version
      puts VERSION
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sidekiq-web_custom-0.3.0 lib/sidekiq/web_custom/version.rb