class Dynamictostatic::CLI
Public Instance Methods
convert(name)
click to toggle source
# File lib/dynamictostatic/cli.rb, line 8 def convert(name) if options[:xcodeproj_path] @xcodeproj_path = options[:xcodeproj_path] else @xcodeproj_path = name + '.xcodeproj' end Dynamictostatic::Converter.new({ :framework_target_name => name, :xcodeproj_path => @xcodeproj_path }).run end