From 5395cd79abf9d1c31ce7b0c2d8f6122fc1257a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20Zsolt?= Date: Tue, 5 Nov 2019 00:18:55 +0100 Subject: [PATCH] Add podspec for CocoaPods (#96) --- RCTAppleHealthKit.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 RCTAppleHealthKit.podspec diff --git a/RCTAppleHealthKit.podspec b/RCTAppleHealthKit.podspec new file mode 100644 index 0000000..4b88696 --- /dev/null +++ b/RCTAppleHealthKit.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "RCTAppleHealthKit" + s.summary = "A React Native bridge module for interacting with Apple Healthkit data" + s.version = "0.6.5" + s.homepage = "https://github.com/terrillo/rn-apple-healthkit" + s.license = "MIT" + s.author = { "Terrillo Walls" => "terrillo@terrillo.com" } + s.platform = :ios, "9.0" + s.source = { :git => "https://github.com/terrillo/rn-apple-healthkit", :tag => "master" } + s.source_files = "RCTAppleHealthKit/*.{h,m}" + s.requires_arc = true + + s.dependency "React" + +end \ No newline at end of file -- 2.26.2