mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
20 lines
558 B
Ruby
20 lines
558 B
Ruby
require "json"
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "react-native-saf-x"
|
|
s.version = package["version"]
|
|
s.summary = package["description"]
|
|
s.homepage = package["homepage"]
|
|
s.license = package["license"]
|
|
s.authors = package["author"]
|
|
|
|
s.platforms = { :ios => "10.0" }
|
|
s.source = { :git => "https://github.com/jd1378/react-native-saf-x.git", :tag => "#{s.version}" }
|
|
|
|
s.source_files = "ios/**/*.{h,m,mm}"
|
|
|
|
s.dependency "React-Core"
|
|
end
|