Sha256: 0efd2d7c1add9f1c13290313fd6644e92c05dc6693301b6bbcd56f94ecc498b7
Contents?: true
Size: 638 Bytes
Versions: 28
Compression:
Stored size: 638 Bytes
Contents
module Pod class Specification def empty_source_files? unless subspecs.empty? # return early if there are some files in subpec(s) but process the spec itself return false unless subspecs.all?(&:empty_source_files?) end check = lambda do |patterns| patterns = [patterns] if patterns.is_a?(String) patterns.reject(&:empty?).all? do |pattern| Xcodeproj::Constants::HEADER_FILES_EXTENSIONS.any? { |ext| pattern.end_with?(ext) } end end available_platforms.all? do |platform| check.call(consumer(platform).source_files) end end end end
Version data entries
28 entries across 28 versions & 4 rubygems