Sha256: 292c2c23b494dc28a5ccd465f88e86af7e2a45c44a5633d4623e33e17cc78931

Contents?: true

Size: 600 Bytes

Versions: 16

Compression:

Stored size: 600 Bytes

Contents

module Xcake
  # This build phase generator detects XCAsset bundles
  # and adds them to the copy resources phase.
  #
  class CopyXCAssetsFileReferenceInstaller < CopyResourcesFileReferenceInstaller

    def self.dependencies
      []
    end

    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

Xcake::FileReferenceInstaller.register_plugin(Xcake::CopyXCAssetsFileReferenceInstaller)

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
xcake-0.6.19 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.18 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.17 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.16 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.14 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.13 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.12 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.11 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.10 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.9 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.8 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.7 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.6 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.5 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.4 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb
xcake-0.6.2 lib/xcake/file_reference_installer/copy_xcassets_file_reference_installer.rb