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| | ||
| 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.name = "React Apple Healthkit" | ||
| s.version = package["version"] | ||
| s.summary = package["description"] | ||
| 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.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.author = { "Terrillo Walls" => "terrillo@terrillo.com" } | ||
| s.platforms = { :ios => "9.0" } | ||
| s.source = { :git => "https://github.com/github_account/react-native-healthkit.git", :tag => "#{s.version}" } | ||
| s.source_files = "RCTAppleHealthKit/**/*.{h,m,swift}" | ||
| s.requires_arc = true | ||
| s.dependency "React" | ||
| end | ||
| \ No newline at end of file | ||
| end |
package-lock.json
0 → 100644
This diff is collapsed.
| { | ||
| "name": "rn-apple-healthkit", | ||
| "version": "0.6.5", | ||
| "version": "0.7.0", | ||
| "description": "A React Native package for interacting with Apple HealthKit", | ||
| "main": "index.js", | ||
| "repository": { | ||
| ... | ... | @@ -24,6 +24,7 @@ |
| "author": "Terrillo Walls", | ||
| "license": "MIT", | ||
| "devDependencies": { | ||
| "react": "16.8.3", | ||
| "react-native": ">=0.40.0" | ||
| }, | ||
| "peerDependencies": { | ||
| ... | ... |
Please register or sign in to comment