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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +19 -10
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f13846c798d97f27a3f1aee5da6c2df8c62ad46f60e76064c00e278fe53f1c99
4
- data.tar.gz: 31b0ad31e7eec759f2090070abad08fce769ffae5ea2efb875855258ba5c2f2c
3
+ metadata.gz: 23e03be9002a12fe4c72f2e37cf215ffb8f677d33ae05dc9baf409d436bfd9b8
4
+ data.tar.gz: fea96f8f2e0e559ea1968f8a9640f6323d35fc228a13a73910213a1b07ee756b
5
5
  SHA512:
6
- metadata.gz: 39f79dbc0e055a351c6f710f0ccfc059b90ff43a396c8ae9ebf5a8ee3c84b8e27b9f0c989f5677e0d1ff3e694127933c636bfd8ef585cc0b501b529467b0ccf1
7
- data.tar.gz: b8adab81e7ed3e12e1dd8f6d2d4057fe94399505e6ceaeac1399398ebfefe3d5f81d8bb90e308969957ce4b89142f1e4e8f53de2bf25763a28d4d4d714f1c3e9
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
- [![GitHubActions](https://github.com/flutter-rb/flutter-rb/workflows/Build/badge.svg)](https://github.com/flutter-rb/flutter-rb/actions?branch=master)
5
+ [![GitHubActions](https://github.com/flutter-rb/flutter-rb/workflows/Checks/badge.svg)](https://github.com/flutter-rb/flutter-rb/actions?branch=master)
6
6
  [![Codebeat](https://codebeat.co/badges/9bb32e28-ca86-4cdc-ba66-bda7f989979a)](https://codebeat.co/projects/github-com-flutter-rb-flutter-rb-master)
7
7
  [![Gem Version](https://badge.fury.io/rb/flutter_rb.svg)](https://badge.fury.io/rb/flutter_rb)
8
8
  [![Gem Downloads](https://img.shields.io/gem/dt/flutter_rb)](https://badge.fury.io/rb/flutter_rb)
9
9
 
10
10
  ## About
11
11
 
12
- A tool for checking a Flutter plugin structure.
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
- - check1
137
- - check2
138
- - check3
146
+ - PluginDirectoriesCheck
147
+ - PluginPubspecNameCheck
148
+ - PluginPubspecDescriptionCheck
139
149
  android:
140
- - check1
141
- - check2
150
+ - PluginGradleAndroidPackageCheck
142
151
  ios:
143
- - check1
144
- - check2
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.1
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: A Ruby tool for checking a Flutter plugin structure
192
+ summary: CLI tool for checking a Flutter plugin structure
193
193
  test_files: []