12345678910111213141516171819202122 |
- require 'json'
- package = JSON.parse(File.read('../package.json'))
-
- Pod::Spec.new do |s|
- s.name = "Permission-Notifications"
- s.dependency "RNPermissions"
-
- s.version = package["version"]
- s.license = package["license"]
- s.summary = package["description"]
- s.authors = package["author"]
- s.homepage = package["homepage"]
-
- s.platform = :ios, "9.0"
- s.ios.deployment_target = "9.0"
- s.tvos.deployment_target = "11.0"
- s.requires_arc = true
-
- s.source = { :git => package["repository"]["url"], :tag => s.version }
- s.source_files = "Notifications/*.{h,m}"
- end
|