26 lines
880 B
Ruby
26 lines
880 B
Ruby
require "json"
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "RNScreens"
|
|
s.version = package["version"]
|
|
s.summary = package["description"]
|
|
s.description = <<-DESC
|
|
RNScreens - first incomplete navigation solution for your React Native app
|
|
DESC
|
|
s.homepage = "https://github.com/software-mansion/react-native-screens"
|
|
s.license = "MIT"
|
|
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
|
|
s.author = { "author" => "author@domain.cn" }
|
|
s.platforms = { :ios => "9.0", :tvos => "11.0" }
|
|
s.source = { :git => "https://github.com/software-mansion/react-native-screens.git", :tag => "#{s.version}" }
|
|
|
|
s.source_files = "ios/**/*.{h,m}"
|
|
s.requires_arc = true
|
|
|
|
s.dependency "React-Core"
|
|
s.dependency "React-RCTImage"
|
|
end
|
|
|