mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-27 19:11:15 +00:00
19 lines
609 B
Ruby
19 lines
609 B
Ruby
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
|