Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
Fixes #551: Pod install failure (#515) (#521)
Browse files Browse the repository at this point in the history
* Adding new `podname` attribute to package.json. Current package.json name is not a valid name for a pod.
* Adding missing homepage attribute to package.json
  • Loading branch information
IldarAbdullin-okta authored Aug 13, 2019
1 parent fa4c0fa commit 8d8f155
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = package['name']
s.name = package['podname']
s.version = package['version']
s.summary = package['description']
s.license = package['license']
Expand Down
2 changes: 2 additions & 0 deletions packages/okta-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"version": "1.0.1",
"description": "Okta OIDC for React Native",
"main": "index.js",
"podname": "OktaSdkBridgeReactNative",
"homepage": "https://github.com/okta/okta-oidc-js/tree/master/packages/okta-react-native",
"scripts": {
"test": "node_modules/.bin/jest",
"test:debug": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand"
Expand Down

0 comments on commit 8d8f155

Please sign in to comment.