Sha256: 024b2d95e54f9cc9699227c0ba86be908cef84c4e03f916ffd74a56768d6ce69
Contents?: true
Size: 530 Bytes
Versions: 6
Compression:
Stored size: 530 Bytes
Contents
module Objc2SwiftAssistant class SwiftFile_Generator attr_accessor :destination_root attr_accessor :source_file_set attr_accessor :swift_file_set #SwiftFileSet def initialize( destination_root, source_file_set ) end def map_sources_to_destinations @swift_file_set = SwiftFileSet.new( @destination_root ) @swift_file_set.mapFromObjCFileSet( @source_file_set ) end # Just add the commented .h and .m files to the destination file def concat_source_files end end end
Version data entries
6 entries across 6 versions & 1 rubygems