class Objc2SwiftAssistant::SwiftFile_Generator
Attributes
destination_root[RW]
source_file_set[RW]
swift_file_set[RW]
Public Class Methods
new( destination_root, source_file_set )
click to toggle source
# File lib/objc2swift_assistant/swift_file_generator.rb, line 10 def initialize( destination_root, source_file_set ) end
Public Instance Methods
concat_source_files()
click to toggle source
Just add the commented .h and .m files to the destination file
# File lib/objc2swift_assistant/swift_file_generator.rb, line 21 def concat_source_files end
map_sources_to_destinations()
click to toggle source
# File lib/objc2swift_assistant/swift_file_generator.rb, line 15 def map_sources_to_destinations @swift_file_set = SwiftFileSet.new( @destination_root ) @swift_file_set.mapFromObjCFileSet( @source_file_set ) end