module Objc::Test

Public Instance Methods

with(filePrefix, runner: :xctool) click to toggle source
# File lib/objc.rb, line 12
def with(filePrefix, runner: :xctool)
  puts "Looking for all files with prefix: #{filePrefix}"

  files = SourceFiles.new(filePrefix)

  project = XcodeProject.new(runner)
  project.install!
  project.add(files)
  project.execute!
end