react-native-tor/react-native-tor.podspec
2020-12-19 13:38:47 -05:00

21 lines
655 B
Ruby

require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-tor"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]
s.platforms = { :ios => "11.1" }
s.source = { :git => "https://github.com/Sifir-io/react-native-tor.git", :tag => "#{s.version}" }
s.swift_version = '5.0'
s.source_files = "ios/**/*.{h,m,mm,swift}"
s.ios.vendored_libraries= ["ios/library/universal/libsifir_ios.dylib"]
s.dependency "React"
end