require "json" package = JSON.parse(File.read(File.join(__dir__, "package.json"))) Pod::Spec.new do |s| s.name = "mappls-intouch-react-native" s.version = package["version"] s.summary = package["description"] s.description = <<-DESC mappls-intouch-react-native DESC s.homepage = "https://github.com/mappls-api/mappls-react-native-intouch-sdk" # brief license entry: s.license = "MIT" # optional - use expanded license entry instead: # s.license = { :type => "MIT", :file => "LICENSE" } s.authors = { "Your Name" => "yourname@email.com" } s.platforms = { :ios => "10.0" } s.source = { :git => "https://github.com/mappls-api/mappls-react-native-intouch-sdk.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,c,m,swift}" s.requires_arc = true s.dependency "React" s.dependency "MapplsAPICore", "1.0.14" s.dependency "MapplsAPIKit/Base", "2.0.28" s.dependency "MapplsLMS/Base", "1.0.5" s.dependency "MapplsIntouchCore/Base", "1.0.2" s.dependency "MapplsIntouch/Base", "1.0.1" # ... # s.dependency "..." end