mirror of
https://github.com/status-im/react-native-http-bridge.git
synced 2026-08-30 22:31:21 +00:00
Add podspec and iOS search path
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
require 'json'
|
||||
|
||||
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
||||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = package['name']
|
||||
s.version = package['version']
|
||||
s.summary = package['description']
|
||||
s.license = package['license']
|
||||
s.homepage = package['homepage']
|
||||
s.authors = package['author']
|
||||
s.platform = :ios, "9.0"
|
||||
s.source = { :git => 'https://github.com/status-im/react-native-http-bridge.git', :tag => "v#{s.version}" }
|
||||
s.source_files = 'ios/**/*.{h,m}'
|
||||
s.requires_arc = true
|
||||
s.dependency 'React'
|
||||
end
|
||||
Reference in New Issue
Block a user