Class: Pod::Xcode::XCFramework
- Inherits:
-
Object
- Object
- Pod::Xcode::XCFramework
- Defined in:
- lib/xcframework_converter/xcframework_ext.rb
Overview
open XCFramework
Class Method Summary collapse
Class Method Details
.open_xcframework(xcframework_path) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/xcframework_converter/xcframework_ext.rb', line 10 def self.open_xcframework(xcframework_path) if instance_method(:initialize).arity == 2 new(File.basename(xcframework_path), xcframework_path.realpath) else new(xcframework_path.realpath) end end |