Skip to content

Commit a85ab45

Browse files
authored
fix: use lowercase 'a' in podspec name (#260)
1 parent 2e048e9 commit a85ab45

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CapacitorCommunityGenericOAuth2.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require 'json'
33
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
44

55
Pod::Spec.new do |s|
6-
s.name = 'CapacitorCommunityGenericOAuth2'
6+
s.name = 'CapacitorCommunityGenericOauth2'
77
s.version = package['version']
88
s.summary = package['description']
99
s.license = package['license']

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ These parameters are overrideable in every platform
244244

245245
| parameter | default | required | description | since |
246246
|-------------------- |--------- |---------- |------------------------------------------------------------------------------------------------ |------- |
247-
| customHandlerClass | | | Provide a class name implementing `CapacitorCommunityGenericOAuth2.OAuth2CustomHandler` | |
247+
| customHandlerClass | | | Provide a class name implementing `CapacitorCommunityGenericOauth2.OAuth2CustomHandler` | |
248248
| siwaUseScope | | | SiWA default scope is `name email` if you want to use the configured one set this param `true` | 2.1.0 |
249249

250250

@@ -416,7 +416,7 @@ This plugin should be as generic as possible, so I don't want to include provide
416416

417417
Therefore, I created a mechanism which let developers integrate custom SDK features in this plugin.
418418
Simply configure the class name in the option property `ios.customHandlerClass`.
419-
This class has to implement `CapacitorCommunityGenericOAuth2.OAuth2CustomHandler`.
419+
This class has to implement `CapacitorCommunityGenericOauth2.OAuth2CustomHandler`.
420420

421421
See a full working example below!
422422

@@ -1018,7 +1018,7 @@ install! 'cocoapods', :disable_input_output_paths => true
10181018
def capacitor_pods
10191019
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
10201020
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
1021-
pod 'CapacitorCommunityGenericOAuth2', :path => '../../node_modules/@capacitor-community/generic-oauth2'
1021+
pod 'CapacitorCommunityGenericOauth2', :path => '../../node_modules/@capacitor-community/generic-oauth2'
10221022
# core plugins
10231023
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
10241024
pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device'
@@ -1067,7 +1067,7 @@ import Foundation
10671067
import FacebookCore
10681068
import FacebookLogin
10691069
import Capacitor
1070-
import CapacitorCommunityGenericOAuth2
1070+
import CapacitorCommunityGenericOauth2
10711071

10721072
@objc class YourIOsFacebookOAuth2Handler: NSObject, OAuth2CustomHandler {
10731073

0 commit comments

Comments
 (0)