react-native-status-keycard/react-native-status-keycard...

23 lines
607 B
Plaintext
Raw Permalink Normal View History

2020-11-24 11:29:25 +00:00
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-status-keycard"
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" }
2020-11-24 11:29:25 +00:00
s.source = { :git => "https://github.com/status-im/react-native-status-keycard.git", :tag => "#{s.version}" }
2020-11-25 09:24:35 +00:00
2020-11-24 11:29:25 +00:00
s.source_files = "ios/**/*.{h,m,mm,swift}"
2020-11-25 09:24:35 +00:00
2020-11-24 11:29:25 +00:00
s.dependency "React"
2020-12-01 10:41:22 +00:00
s.dependency "Keycard"
2020-11-24 11:29:25 +00:00
end