Skip to content

Instantly share code, notes, and snippets.

@joshjhargreaves
Last active March 16, 2020 06:10
Show Gist options
  • Save joshjhargreaves/f972f4985f1c8e94d427cae3b2ea7513 to your computer and use it in GitHub Desktop.
Save joshjhargreaves/f972f4985f1c8e94d427cae3b2ea7513 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-navigation"
s.version = package['version']
s.summary = "React-native navigation solution"
s.authors = { "Wix" => "Wix" }
s.homepage = "https://github.com/wix/react-native-navigation.git#readme"
s.license = package['license']
s.platform = :ios, "8.0"
s.module_name = 'ReactNativeNavigation'
s.source = { :git => "https://github.com/wix/react-native-navigation.git", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.header_mappings_dir = 'ios'
s.public_header_files = "ios/*.h"
s.dependency 'React'
s.frameworks = 'UIKit'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment