Skip to content

Commit 207472f

Browse files
Update Pod spec source
Update name with updated repo name
1 parent 585768b commit 207472f

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ _Lets get started!!!_
1616
Fork the code
1717
-------------
1818

19-
In your browser, navigate to: [https://github.com/okta/okta-logger-swift](https://github.com/okta/okta-os)
19+
In your browser, navigate to: [https://github.com/okta/okta-utils-swift](https://github.com/okta/okta-os)
2020

2121
Fork the repository by clicking on the 'Fork' button on the top right hand side. The fork will happen and you will be taken to your own fork of the repository. Copy the Git repository URL by clicking on the clipboard next to the URL on the right hand side of the page under '**HTTPS** clone URL'. You will paste this URL when doing the following `git clone` command.
2222

2323
On your computer, follow these steps to setup a local repository for working on the Okta Logger SDK:
2424

2525
``` bash
26-
$ git clone https://github.com/YOUR_ACCOUNT/okta-logger-swift.git
27-
$ cd okta-logger-swift
28-
$ git remote add upstream https://github.com/okta/okta-logger-swift.git
26+
$ git clone https://github.com/YOUR_ACCOUNT/okta-utils-swift.git
27+
$ cd okta-utils-swift
28+
$ git remote add upstream https://github.com/okta/okta-utils-swift.git
2929
$ git checkout master
3030
$ git fetch upstream
3131
$ git rebase upstream/master
@@ -88,7 +88,7 @@ Now that the `feature_x` branch has been pushed to your GitHub repository, you c
8888

8989
To initiate the pull request, do the following:
9090

91-
1. In your browser, navigate to your forked repository: [https://github.com/YOUR_ACCOUNT/okta-logger-swift](https://github.com/YOUR_ACCOUNT/okta-logger-swift)
91+
1. In your browser, navigate to your forked repository: [https://github.com/YOUR_ACCOUNT/okta-utils-swift](https://github.com/YOUR_ACCOUNT/okta-utils-swift)
9292
2. Click the new button called '**Compare & pull request**' that showed up just above the main area in your forked repository
9393
3. Validate the pull request will be into the upstream `master` and will be from your `feature_x` branch
9494
4. Enter a detailed description of the work you have done and then click '**Send pull request**'

OktaAnalytics.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ Pod::Spec.new do |s|
33
s.version = "2.0.3"
44
s.summary = "Implementation of Analytics logger destination"
55
s.description = "Implementation of Analytics logger destination. Requires OktaLogger/Core"
6-
s.homepage = "https://github.com/okta/okta-logger-swift"
6+
s.homepage = "https://github.com/okta/okta-utils-swift"
77
s.license = { :type => 'APACHE2', :file => 'LICENSE' }
88
s.author = { "Okta Developers" => "developer@okta.com" }
9-
s.source = { :git => "https://github.com/okta/okta-logger-swift.git", :tag => "OktaAnalytics-"+s.version.to_s }
9+
s.source = { :git => "https://github.com/okta/okta-utils-swift.git", :tag => "OktaAnalytics-"+s.version.to_s }
1010

1111
s.osx.deployment_target = '11.0'
1212
s.ios.deployment_target = '13.0'

OktaLogger.podspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ Pod::Spec.new do |s|
33
s.version = "1.3.15"
44
s.summary = "Logging proxy for standardized logging interface across products"
55
s.description = "Standard interface for all logging in Okta apps + SDK. Supports file, console, firebase logging destinations."
6-
s.homepage = "https://github.com/okta/okta-logger-swift"
6+
s.homepage = "https://github.com/okta/okta-utils-swift"
77
s.license = { :type => 'APACHE2', :file => 'LICENSE' }
88
s.author = { "Okta Developers" => "developer@okta.com" }
9-
s.source = { :git => "https://github.com/okta/okta-logger-swift.git", :tag => "OktaLogger-"+s.version.to_s }
10-
s.ios.deployment_target = '11.0'
11-
s.osx.deployment_target = '10.14'
9+
s.source = { :git => "https://github.com/okta/okta-utils-swift.git", :tag => "OktaLogger-"+s.version.to_s }
10+
s.ios.deployment_target = '13.0'
11+
s.osx.deployment_target = '11.0'
1212
s.watchos.deployment_target = '6.0'
1313
s.swift_version = '5.0'
1414
s.default_subspec = "Complete"

OktaSQLiteStorage.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Pod::Spec.new do |s|
66
Okta SQLite storage wrapper on top of GRDB framework
77
DESC
88
s.platforms = { :ios => "13.0", :osx => "12.0" }
9-
s.homepage = 'https://github.com/okta/okta-logger-swift.git'
9+
s.homepage = 'https://github.com/okta/okta-utils-swift'
1010
s.license = { :type => 'APACHE2', :file => 'LICENSE' }
1111
s.authors = { "Okta Developers" => "developer@okta.com" }
12-
s.source = { :git => 'https://github.com/okta/okta-logger-swift.git', :tag => "OktaSQLiteStorage-"+s.version.to_s }
12+
s.source = { :git => 'https://github.com/okta/okta-utils-swift.git', :tag => "OktaSQLiteStorage-"+s.version.to_s }
1313
s.swift_version = '5.0'
1414

1515
s.ios.deployment_target = '13.0'

Podfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ SPEC CHECKSUMS:
143143
GRDB.swift: e98cd55ec99dea5da99355d588149063e4cfa0eb
144144
Instabug: 7c9b72efb697e0f11c21ddf74e5d57a2b67ce9f7
145145
nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431
146-
OktaAnalytics: 7c662c2b5e01655d31a7050e3a2a13e99fee47da
147-
OktaLogger: badc368e7684ea2c227962a510cbb17240eb5b3e
148-
OktaSQLiteStorage: 51c0334884cfffa47abd15869c841a9eb86c20a2
146+
OktaAnalytics: 09361ec53c2937f29b175eded560adbd312435b1
147+
OktaLogger: a8331fd0083438c06653eb0b8212218ec6bfc0c8
148+
OktaSQLiteStorage: d2e319aac39275689c27c7b598fcedafb2608608
149149
PromisesObjC: c50d2056b5253dadbd6c2bea79b0674bd5a52fa4
150150
SQLCipher: 905b145f65f349f26da9e60a19901ad24adcd381
151151
SwiftLint: 1b7561918a19e23bfed960e40759086e70f4dba5

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

2-
# [OktaLogger](https://github.com/okta/okta-logger-swift/blob/master/Sources/OktaLogger/OktaLogger.docc/Overview.md)
2+
# [OktaLogger](https://github.com/okta/okta-utils-swift/blob/master/Sources/OktaLogger/OktaLogger.docc/Overview.md)
33

44

5-
# [OktaAnalytics](https://github.com/okta/okta-logger-swift/blob/master/Sources/OktaAnalytics/OktaAnalytics.docc/Overview.md)
5+
# [OktaAnalytics](https://github.com/okta/okta-utils-swift/blob/master/Sources/OktaAnalytics/OktaAnalytics.docc/Overview.md)
66

77

8-
# [OktaSQLiteStorage](https://github.com/okta/okta-logger-swift/blob/master/Sources/OktaSQLiteStorage/README.md)
8+
# [OktaSQLiteStorage](https://github.com/okta/okta-utils-swift/blob/master/Sources/OktaSQLiteStorage/README.md)

Sources/OktaAnalytics/OktaAnalytics.docc/Overview.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ OktaAnalytics.addProvider(appCenterAnalyticsProvider)
2929

3030
## Dependencies
3131

32-
- [OktaLogger](https://github.com/okta/okta-logger-swift/tree/master/Sources/OktaLogger)
33-
- [OktaSQLiteStorage](https://github.com/okta/okta-logger-swift/tree/master/Sources/OktaSQLiteStorage)
32+
- [OktaLogger](https://github.com/okta/okta-utils-swift/tree/master/Sources/OktaLogger)
33+
- [OktaSQLiteStorage](https://github.com/okta/okta-utils-swift/tree/master/Sources/OktaSQLiteStorage)
3434
- [AppCenter](https://github.com/microsoft/appcenter-sdk-apple)
3535

3636
## Scenario Design
37-
![](https://github.com/okta/okta-logger-swift/assets/130079620/48ac1514-8a09-40bb-a1f9-620f161bb77f)
37+
![](https://github.com/okta/okta-utils-swift/assets/130079620/48ac1514-8a09-40bb-a1f9-620f161bb77f)
3838

3939
Sceanrio is the way of tracking the user flow to Analytics provider.
4040

4141
## Scenario DB Design
42-
![](https://github.com/okta/okta-logger-swift/assets/130079620/83b08e25-e362-40a5-b46c-db3387ab9222)
42+
![](https://github.com/okta/okta-utils-swift/assets/130079620/83b08e25-e362-40a5-b46c-db3387ab9222)

Sources/OktaLogger/OktaLogger.docc/Overview.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ OktaLogger is a proxy-based logging SDK for allowing an app to log to many desti
2828
This SDK is available through [CocoaPods](https://cocoapods.org). To install it, add the following line to your Podfile:
2929

3030
```
31-
pod 'OktaLogger', :git => 'https://github.com/okta/okta-logger-swift.git'
31+
pod 'OktaLogger', :git => 'https://github.com/okta/okta-utils-swift.git'
3232
```
3333

3434
There are few available subspecs:
@@ -42,7 +42,7 @@ There are few available subspecs:
4242

4343
This SDK is available through Swift Package Manager. To install it, import it from the following url:
4444
```
45-
https://github.com/okta/okta-logger-swift.git
45+
https://github.com/okta/okta-utils-swift.git
4646
```
4747
There are few available products available to import:
4848

0 commit comments

Comments
 (0)