flutter_rb 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +19 -11
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23e03be9002a12fe4c72f2e37cf215ffb8f677d33ae05dc9baf409d436bfd9b8
|
4
|
+
data.tar.gz: fea96f8f2e0e559ea1968f8a9640f6323d35fc228a13a73910213a1b07ee756b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16560e049891b0f685762eeb4d7c774e2872e1b5c75a38b3a8e40caada6914a47b357aaae67e0a7d8690148e29ff181651ab41701b9b0bdbdd75c6250edaa8fc
|
7
|
+
data.tar.gz: 77bd4782b36392b10f2d5053651b6f9ce803d72aceabdab7cfa51f9c1f4311f14f60dd15b26b0c9d5230bd646f01af598c4aa8d33d2574247af0a35f71834692
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,16 +1,15 @@
|
|
1
|
-
<!--suppress CheckImageSize -->
|
2
1
|
<img src="media/logo/ic_lib.jpg" height="100px" alt="Project's logo">
|
3
2
|
|
4
3
|
# flutter_rb
|
5
4
|
|
6
|
-
[](https://github.com/flutter-rb/flutter-rb/actions?branch=master)
|
7
6
|
[](https://codebeat.co/projects/github-com-flutter-rb-flutter-rb-master)
|
8
7
|
[](https://badge.fury.io/rb/flutter_rb)
|
9
8
|
[](https://badge.fury.io/rb/flutter_rb)
|
10
9
|
|
11
10
|
## About
|
12
11
|
|
13
|
-
|
12
|
+
CLI tool for checking a Flutter plugin structure.
|
14
13
|
|
15
14
|
### Checks
|
16
15
|
|
@@ -129,21 +128,30 @@ $ frb author
|
|
129
128
|
|
130
129
|
### Configuration
|
131
130
|
|
131
|
+
#### CLI
|
132
|
+
|
133
|
+
Since version `1.2.2` you can generate config by following command in terminal:
|
134
|
+
|
135
|
+
```shell
|
136
|
+
$ frb config
|
137
|
+
```
|
138
|
+
|
139
|
+
#### Manually
|
140
|
+
|
132
141
|
Add `.flutter_rb.yaml` to root of a project for select checks that you are want to exclude:
|
133
142
|
|
134
143
|
```yaml
|
135
144
|
exclude:
|
136
145
|
flutter:
|
137
|
-
-
|
138
|
-
-
|
139
|
-
-
|
146
|
+
- PluginDirectoriesCheck
|
147
|
+
- PluginPubspecNameCheck
|
148
|
+
- PluginPubspecDescriptionCheck
|
140
149
|
android:
|
141
|
-
-
|
142
|
-
- check2
|
150
|
+
- PluginGradleAndroidPackageCheck
|
143
151
|
ios:
|
144
|
-
-
|
145
|
-
-
|
146
|
-
|
152
|
+
- PluginPodspecNameCheck
|
153
|
+
- PluginPodspecVersionCheck
|
154
|
+
- PluginPodspecAuthorsCheck
|
147
155
|
```
|
148
156
|
|
149
157
|
### Output report
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flutter_rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artem Fomchenkov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods
|
@@ -189,5 +189,5 @@ requirements: []
|
|
189
189
|
rubygems_version: 3.4.10
|
190
190
|
signing_key:
|
191
191
|
specification_version: 4
|
192
|
-
summary:
|
192
|
+
summary: CLI tool for checking a Flutter plugin structure
|
193
193
|
test_files: []
|