@@ -96,6 +96,13 @@ $ flutter pub global activate flutter_oss_licenses
96
96
$ flutter pub global run flutter_oss_licenses:generate.dart
97
97
```
98
98
99
+
100
+ ### Cocoapods (required)
101
+ 1 . Install the pod package through Podfile.
102
+ ```
103
+ $ pod install
104
+ ```
105
+
99
106
<br >
100
107
101
108
## 2. How to install
@@ -124,7 +131,7 @@ $ fosslight_dependency
124
131
```
125
132
| Options | Description | Value |
126
133
| --------- | ------------- | ------- |
127
- | -m | (optional) <br > package manager for your project | npm, maven, gradle, pip, pub |
134
+ | -m | (optional) <br > package manager for your project | npm, maven, gradle, pip, pub, cocoapods |
128
135
| -p | (optional) <br > input directory | (path) |
129
136
| -o | (optional) <br > output file directory | (path) |
130
137
| -a | (pypi only required) <br > virtual environment activate command | conda example: 'conda activate (venv name)' |
@@ -145,11 +152,13 @@ FOSSLight dependency creates the result file that has xlsx extension (Microsoft
145
152
146
153
It prints the OSS information based on manifest file(package.json, pom.xml) of dependencies (including transitive dependenices).
147
154
For a unique OSS name, OSS name is printed such as (package_manager):(oss name) or (group id):(artifact id).
155
+ (The oss name of cocoapods is printed just oss name of pod spec information. Because cocoapods doesn't manage the source code of packages itself.)
148
156
149
157
| Package manager | OSS Name | Download Location | Homepage |
150
158
| --------------- | ------------------ | ----------------- | -------- |
151
159
| Npm | npm:(oss name) | Priority1. repository in package.json <br > Priority2. www.npmjs.com/package/ (oss_name) | www.npmjs.com/package/ (oss_name) |
152
160
| Pip | pypi:(oss name) | https://pypi.org/project/ (oss_name)/(version) | homepage in (pip show) information |
153
161
| Maven (Gradle) | (group_id):(artifact_id) | https://mvnrepository.com/artifact/ (group_id)/(artifact_id)/(version) | https://mvnrepository.com/artifact/ (group_id)/(artifact_id) |
154
162
| Pub | pub:(oss name) | https://pub.dev/packages/ (oss_name)/versions/(version) | homepage in (pub information) |
163
+ | Cocoapods | oss name | source in (pod spec information) | homepage in (pod spec information) |
155
164
0 commit comments