Skip to content

Instantly share code, notes, and snippets.

@bilby91
Created March 12, 2018 23:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bilby91/d3fba00e74d570be04d793bf89c79109 to your computer and use it in GitHub Desktop.
Save bilby91/d3fba00e74d570be04d793bf89c79109 to your computer and use it in GitHub Desktop.
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'react-native-twilio-video-webrtc'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.source = { git: 'https://github.com/blackuy/react-native-twilio-video-web-rtc', tag: s.version }
s.requires_arc = true
s.platform = :ios, '8.0'
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js'
s.source_files = 'ios/*.{h,m}'
s.dependency 'React'
s.dependency 'TwilioVideo', '>= 1.0.1'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment