mirror of
https://github.com/tappollo/OSCKit.git
synced 2026-01-12 22:33:39 +08:00
20 lines
634 B
Ruby
20 lines
634 B
Ruby
Pod::Spec.new do |s|
|
|
|
|
s.name = "OSC"
|
|
s.version = "1.0.0"
|
|
s.summary = "Richo OSCKit"
|
|
s.description = "Richo OSCKit with Promise"
|
|
s.homepage = "https://theta360.com/"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { "Zhigang Fang" => "zhigang1992@gmail.com" }
|
|
s.platform = :ios, "9.0"
|
|
s.source = { :git => "https://github.com/tappollo/OSCKit.git", :tag => s.version }
|
|
s.source_files = "Source/*.swift"
|
|
s.frameworks = "SystemConfiguration"
|
|
s.module_name = 'OSCKit'
|
|
s.dependency 'SwiftyyJSON'
|
|
s.dependency 'PromiseKit'
|
|
s.dependency 'AwaitKit'
|
|
|
|
end
|