Sha256: 3302a979479758acdd26400c300cf06216216ab7d31a611a4e71e9ea0c1bd6a2

Contents?: true

Size: 368 Bytes

Versions: 1

Compression:

Stored size: 368 Bytes

Contents

# frozen_string_literal: true

# :nocov:
module LedgerSync
  module QuickBooksOnline
    VERSION = '0.3.1'

    def self.version(args = {})
      pre = args.fetch(:pre, false)

      if !pre && (!ENV['TRAVIS'] || ENV.fetch('TRAVIS_TAG', '') != '')
        VERSION
      else
        "#{VERSION}.pre.#{ENV['TRAVIS_BUILD_NUMBER']}"
      end
    end
  end
end
# :nocov:

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ledger_sync-quickbooks_online-0.3.1 lib/ledger_sync/quickbooks_online/version.rb