Sha256: 2b80b444c2af7d1d8409c820f1d5200d179236066e6fd8d687d1d2a020b925df
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
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/{{REPO_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/**/*.{h,m,swift}' cs.resource_bundle = { '{{PLUGIN_NAME}}JS' => 'js/*.{js,json}' } end s.subspec 'Binary' do |cs| cs.ios.vendored_frameworks = 'XCFramework/{{PLUGIN_NAME}}.xcframework' cs.resource_bundle = { '{{PLUGIN_NAME}}JS' => 'js/*.{js,json}' } end s.default_subspec = 'Source' s.dependency 'GoNativeCore' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gonative-cli-0.5.6 | templates/plugins/ios/common/PLUGIN_NAME.podspec.tpl |