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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +19 -11
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5fb993e2dda5603c2b554cc6170bc6fc35fc5e1ffa66bf297d6e58831848f57
4
- data.tar.gz: a6cdb39bcfbeced31b795c35ad29afe8aa77610114db5983af2f7c6f537f514e
3
+ metadata.gz: 23e03be9002a12fe4c72f2e37cf215ffb8f677d33ae05dc9baf409d436bfd9b8
4
+ data.tar.gz: fea96f8f2e0e559ea1968f8a9640f6323d35fc228a13a73910213a1b07ee756b
5
5
  SHA512:
6
- metadata.gz: ba389f8bfbe506225b2fa88463e33ccb43ebcc77d3d1796c6736f8c0c57f2ba03a473a7ecfcd9a153afe3116cb4e18019e1c2a7ac690395deebb07f5eed90449
7
- data.tar.gz: f57858e70b86497b3413cb04f95431981470d2eae4d5f137f4bfe72ab67e32120e66c383fd1f5faf35f2669cf41c5a81bf93ffe671f9ca49eee4ded7a5c7e670
6
+ metadata.gz: 16560e049891b0f685762eeb4d7c774e2872e1b5c75a38b3a8e40caada6914a47b357aaae67e0a7d8690148e29ff181651ab41701b9b0bdbdd75c6250edaa8fc
7
+ data.tar.gz: 77bd4782b36392b10f2d5053651b6f9ce803d72aceabdab7cfa51f9c1f4311f14f60dd15b26b0c9d5230bd646f01af598c4aa8d33d2574247af0a35f71834692
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2023 Artem Fomchenkov
1
+ Copyright (c) 2020-2024 Artem Fomchenkov
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
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
- [![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)
7
6
  [![Codebeat](https://codebeat.co/badges/9bb32e28-ca86-4cdc-ba66-bda7f989979a)](https://codebeat.co/projects/github-com-flutter-rb-flutter-rb-master)
8
7
  [![Gem Version](https://badge.fury.io/rb/flutter_rb.svg)](https://badge.fury.io/rb/flutter_rb)
9
8
  [![Gem Downloads](https://img.shields.io/gem/dt/flutter_rb)](https://badge.fury.io/rb/flutter_rb)
10
9
 
11
10
  ## About
12
11
 
13
- A tool for checking a Flutter plugin structure.
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
- - check1
138
- - check2
139
- - check3
146
+ - PluginDirectoriesCheck
147
+ - PluginPubspecNameCheck
148
+ - PluginPubspecDescriptionCheck
140
149
  android:
141
- - check1
142
- - check2
150
+ - PluginGradleAndroidPackageCheck
143
151
  ios:
144
- - check1
145
- - check2
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.0
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-12 00:00:00.000000000 Z
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: A Ruby tool for checking a Flutter plugin structure
192
+ summary: CLI tool for checking a Flutter plugin structure
193
193
  test_files: []