Sha256: d23258dbeef51f3b7493f5baeae953c318178010e7c600c869d15a9caf9133be
Contents?: true
Size: 634 Bytes
Versions: 31
Compression:
Stored size: 634 Bytes
Contents
# frozen_string_literal: true module Circleci module Bundle module Update module Pr module Note module_function def exist? File.exist?('.circleci/BUNDLE_UPDATE_NOTE.md') || File.exist?('CIRCLECI_BUNDLE_UPDATE_NOTE.md') end def read if File.exist?('.circleci/BUNDLE_UPDATE_NOTE.md') File.read('.circleci/BUNDLE_UPDATE_NOTE.md') elsif File.exist?('CIRCLECI_BUNDLE_UPDATE_NOTE.md') File.read('CIRCLECI_BUNDLE_UPDATE_NOTE.md') end end end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems