Sha256: 0f4c7c256ad421e90ca6fd63752fa8306e6931984a30dfcabb841743e623eb43
Contents?: true
Size: 882 Bytes
Versions: 3
Compression:
Stored size: 882 Bytes
Contents
Pod::Spec.new do |s| s.name = '{{PLUGIN_NAME}}' s.version = '0.1.0' s.summary = 'Facebook plugin for GoNative.' s.description = <<-DESC TODO: Add long description of the pod here. DESC s.homepage = 'https://github.com/gonativeio/{{PLUGIN_NAME}}' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'hhunaid' => 'hhunaid@gmail.com' } s.source = { :git => 'git@github.com:gonativeio/{{PLUGIN_NAME}}.git', :tag => s.version.to_s } s.ios.deployment_target = '10.0' s.swift_versions = '5.0' s.subspec 'Source' do |cs| cs.source_files = '{{PLUGIN_NAME}}/Classes/**/*' end s.subspec 'Binary' do |cs| cs.ios.vendored_frameworks = 'XCFramework/{{PLUGIN_NAME}}.xcframework' end s.default_subspec = 'Source' s.dependency 'GoNativeCore' end
Version data entries
3 entries across 3 versions & 1 rubygems