Start of iOS project rewrite

This commit is contained in:
Nick
2017-10-23 16:41:36 -07:00
parent e35bcb2f12
commit 4f2fac7916
13 changed files with 610 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "react-native-mapbox-gl"
s.summary = "React Native Component for Mapbox GL"
s.version = package['version']
s.authors = { "Nick Italiano" => "ni6@njit.edu" }
s.homepage = "https://github.com/mapbox/react-native-mapbox-gl#readme"
s.license = "MIT"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/mapbox/react-native-mapbox-gl.git" }
s.source_files = "lib/ios/RCTMGL/**/*.{h,m}"
s.dependency 'React'
s.dependency 'Mapbox', '3.6'
end