Sha256: 1cbb3e543b81d6618aed1d90261ea7ac1f646d9d4daee13f7de40a0c35938dd1
Contents?: true
Size: 379 Bytes
Versions: 1
Compression:
Stored size: 379 Bytes
Contents
# frozen_string_literal: true # :nocov: module LedgerSync module QuickBooksOnline VERSION = '2.0.0' def self.version(args = {}) pre = args.fetch(:pre, false) if !pre && (!ENV['TRAVIS'] || ENV.fetch('TRAVIS_TAG', '') != '') VERSION else "#{VERSION}.pre.#{ENV.fetch('TRAVIS_BUILD_NUMBER', nil)}" end end end end # :nocov:
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ledger_sync-quickbooks_online-2.0.0 | lib/ledger_sync/quickbooks_online/version.rb |