File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -76,14 +76,14 @@ All of the official releases are tagged in this repo and available via CocoaPods
76
76
source snapshot or unreleased branch, use Podfile directives like the following:
77
77
78
78
To access FirebaseFirestore via a branch:
79
- ```
79
+ ``` ruby
80
80
pod ' FirebaseCore' , :git => ' https://github.com/firebase/firebase-ios-sdk.git' , :branch => ' master'
81
81
pod ' FirebaseFirestore' , :git => ' https://github.com/firebase/firebase-ios-sdk.git' , :branch => ' master'
82
82
```
83
83
84
84
To access FirebaseMessaging via a checked out version of the firebase-ios-sdk repo do:
85
85
86
- ```
86
+ ``` ruby
87
87
pod ' FirebaseCore' , :path => ' /path/to/firebase-ios-sdk'
88
88
pod ' FirebaseMessaging' , :path => ' /path/to/firebase-ios-sdk'
89
89
```
@@ -116,7 +116,9 @@ Install
116
116
117
117
For the pod that you want to develop:
118
118
119
- ` pod gen Firebase{name here}.podspec --local-sources=./ --auto-open --platforms=ios `
119
+ ``` ruby
120
+ pod gen Firebase {name here}.podspec -- local- sources= ./ -- auto- open -- platforms= ios
121
+ ```
120
122
121
123
Note: If the CocoaPods cache is out of date, you may need to run
122
124
` pod repo update ` before the ` pod gen ` command.
@@ -166,7 +168,7 @@ before creating a PR.
166
168
GitHub Actions will verify that any code changes are done in a style compliant
167
169
way. Install ` clang-format ` and ` mint ` :
168
170
169
- ```
171
+ ``` console
170
172
brew install clang-format@11
171
173
brew install mint
172
174
```
You can’t perform that action at this time.
0 commit comments