Class: Pod::Specification

Inherits:
Object
  • Object
show all
Defined in:
lib/cocoapods-binary-cache/helper/podspec.rb

Instance Method Summary collapse

Instance Method Details

#empty_source_files?Boolean

Returns:

  • (Boolean)


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/cocoapods-binary-cache/helper/podspec.rb', line 3

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