Sha256: 749d5c9563f839a187a81596a0b803091546be3e61672c4739af80dd58877974

Contents?: true

Size: 990 Bytes

Versions: 6

Compression:

Stored size: 990 Bytes

Contents

require 'xcres/analyzer/resources_analyzer/base_resources_analyzer'

module XCRes
  module ResourcesAnalyzer

    # A +LooseResourcesAnalyzer+ scans the project for resources, which are
    # loosely placed in the project or in a group and should be included in the
    # output file.
    #
    class LooseResourcesAnalyzer < BaseResourcesAnalyzer

      def analyze
        @sections = [build_section_for_loose_images]
        super
      end

      def exclude_file_patterns
        super + ['Default.*', 'Default@2x.*', 'Default-568h@2x.*']
      end

      # Build a section for loose image resources in the project
      #
      # @return [Section]
      #
      def build_section_for_loose_images
        image_files = find_image_files(resources_files.map(&:path))

        log "Found #%s image files in project.", image_files.count

        data = build_images_section_data(image_files, use_basename: [:key, :path])

        new_section('Images', data)
      end

    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
xcres-0.6.1 lib/xcres/analyzer/resources_analyzer/loose_resources_analyzer.rb
xcres-0.6.0 lib/xcres/analyzer/resources_analyzer/loose_resources_analyzer.rb
xcres-0.5.0 lib/xcres/analyzer/resources_analyzer/loose_resources_analyzer.rb
xcres-0.4.4 lib/xcres/analyzer/resources_analyzer/loose_resources_analyzer.rb
xcres-0.4.3 lib/xcres/analyzer/resources_analyzer/loose_resources_analyzer.rb
xcres-0.4.2 lib/xcres/analyzer/resources_analyzer/loose_resources_analyzer.rb