Sha256: 978f6e8475eecbeaadcbe09d38deeedc48086f320cf8bd9b60e65263429254d3

Contents?: true

Size: 368 Bytes

Versions: 1

Compression:

Stored size: 368 Bytes

Contents

# frozen_string_literal: true

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

    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.2.4 lib/ledger_sync/quickbooks_online/version.rb