Sha256: f54aab75eca75f2ccbe5377d5bf8344230f06c74bd6556d8f7c60b616082723c
Contents?: true
Size: 495 Bytes
Versions: 12
Compression:
Stored size: 495 Bytes
Contents
module Xcake module Generator # This build phase generator detects XCAsset bundles # and adds them to the copy resources phase. # class CopyXCAssetsBuildPhase < CopyResourcesBuildPhase def self.can_install_node(node) File.directory?(node.path) && [".xcassets"].include?(File.extname(node.path)) end def visit_node(node) super #Ignore all files inside of the XCAssets node.children = [] end end end end
Version data entries
12 entries across 12 versions & 1 rubygems