Sha256: faa95ea6d2b9c3254317047ab54c3eafc895ef76636ca3f7043edaa3b4fb9e8f
Contents?: true
Size: 626 Bytes
Versions: 16
Compression:
Stored size: 626 Bytes
Contents
module Xcake # This build phase generator detects XCDataModeld bundles # and adds them to the compile source phase. # class CompileXCDataModeldFileReferenceInstaller< CompileSourceFileReferenceInstaller def self.dependencies [] end def self.can_install_node(node) File.directory?(node.path) && [".xcdatamodeld"].include?(File.extname(node.path)) end def visit_node(node) super # Ignore all files inside of the XCDataModel node.children = [] end end end Xcake::FileReferenceInstaller.register_plugin(Xcake::CompileXCDataModeldFileReferenceInstaller)
Version data entries
16 entries across 16 versions & 1 rubygems