flutter_rb 1.2.1 → 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/README.md +19 -10
- metadata +2 -2
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/README.md
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
|
3
3
|
# flutter_rb
|
4
4
|
|
5
|
-
[](https://github.com/flutter-rb/flutter-rb/actions?branch=master)
|
6
6
|
[](https://codebeat.co/projects/github-com-flutter-rb-flutter-rb-master)
|
7
7
|
[](https://badge.fury.io/rb/flutter_rb)
|
8
8
|
[](https://badge.fury.io/rb/flutter_rb)
|
9
9
|
|
10
10
|
## About
|
11
11
|
|
12
|
-
|
12
|
+
CLI tool for checking a Flutter plugin structure.
|
13
13
|
|
14
14
|
### Checks
|
15
15
|
|
@@ -128,21 +128,30 @@ $ frb author
|
|
128
128
|
|
129
129
|
### Configuration
|
130
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
|
+
|
131
141
|
Add `.flutter_rb.yaml` to root of a project for select checks that you are want to exclude:
|
132
142
|
|
133
143
|
```yaml
|
134
144
|
exclude:
|
135
145
|
flutter:
|
136
|
-
-
|
137
|
-
-
|
138
|
-
-
|
146
|
+
- PluginDirectoriesCheck
|
147
|
+
- PluginPubspecNameCheck
|
148
|
+
- PluginPubspecDescriptionCheck
|
139
149
|
android:
|
140
|
-
-
|
141
|
-
- check2
|
150
|
+
- PluginGradleAndroidPackageCheck
|
142
151
|
ios:
|
143
|
-
-
|
144
|
-
-
|
145
|
-
|
152
|
+
- PluginPodspecNameCheck
|
153
|
+
- PluginPodspecVersionCheck
|
154
|
+
- PluginPodspecAuthorsCheck
|
146
155
|
```
|
147
156
|
|
148
157
|
### Output report
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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
|
@@ -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: []
|