Sha256: 206f1a7012e6bbaba61c2352c596bd2da3586ff36b27dbee8525a3ff9b77e24e

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.2'

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