0.7.0v
Showing
CHANGELOG.md
0 → 100644
Podfile
0 → 100644
require "json" | |||
package = JSON.parse(File.read(File.join(__dir__, "package.json"))) | |||
Pod::Spec.new do |s| | Pod::Spec.new do |s| | ||
s.name = "RCTAppleHealthKit" | s.name = "React Apple Healthkit" | ||
s.summary = "A React Native bridge module for interacting with Apple Healthkit data" | s.version = package["version"] | ||
s.version = "0.6.5" | s.summary = package["description"] | ||
s.homepage = "https://github.com/terrillo/rn-apple-healthkit" | s.description = <<-DESC | ||
A React Native package for interacting with Apple HealthKit | |||
DESC | |||
s.homepage = "https://github.com/github_account/react-native-healthkit" | |||
s.license = "MIT" | s.license = "MIT" | ||
s.author = { "Terrillo Walls" => "terrillo@terrillo.com" } | s.author = { "Terrillo Walls" => "terrillo@terrillo.com" } | ||
s.platform = :ios, "9.0" | s.platforms = { :ios => "9.0" } | ||
s.source = { :git => "https://github.com/terrillo/rn-apple-healthkit", :tag => "master" } | s.source = { :git => "https://github.com/github_account/react-native-healthkit.git", :tag => "#{s.version}" } | ||
s.source_files = "RCTAppleHealthKit/*.{h,m}" | |||
s.source_files = "RCTAppleHealthKit/**/*.{h,m,swift}" | |||
s.requires_arc = true | s.requires_arc = true | ||
s.dependency "React" | s.dependency "React" | ||
... | ... |
package-lock.json
0 → 100644
This diff is collapsed.
{ | { | ||
"name": "rn-apple-healthkit", | "name": "rn-apple-healthkit", | ||
"version": "0.6.5", | "version": "0.7.0", | ||
"description": "A React Native package for interacting with Apple HealthKit", | "description": "A React Native package for interacting with Apple HealthKit", | ||
"main": "index.js", | "main": "index.js", | ||
"repository": { | "repository": { | ||
... | @@ -24,6 +24,7 @@ | ... | @@ -24,6 +24,7 @@ |
"author": "Terrillo Walls", | "author": "Terrillo Walls", | ||
"license": "MIT", | "license": "MIT", | ||
"devDependencies": { | "devDependencies": { | ||
"react": "16.8.3", | |||
"react-native": ">=0.40.0" | "react-native": ">=0.40.0" | ||
}, | }, | ||
"peerDependencies": { | "peerDependencies": { | ||
... | ... |
Please register or sign in to comment