fastlane-plugin-flutter_version 0.1.7 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 445078ef94413aa065dbbd9b3a6fb3d1c486b1c32a9a743ed68be6b935dc3b73
4
- data.tar.gz: 2548b3d07141f63f797bbf35bc1529c96dce2ae76751034fcc1a66e9e040024a
3
+ metadata.gz: 898a0c032e445d7c6cd206e7390331c3626d5c67bd42b8e6333ceddb12098670
4
+ data.tar.gz: ecc9f689ab65e73e8b01076abd79ebadf3704b75a7c0e5306f0231daa434e69f
5
5
  SHA512:
6
- metadata.gz: 7c54234649873f8208cc9d95a1c2f381d18f986218c30ad222f339c525e28378a99474c8fbb9a8ecb60e306779304b1097b844261249bdb8e46259d14c7410b8
7
- data.tar.gz: 416883e194008876bbd5c27e69343ad8d93644a8d09bbe9ca3af0da1c619e5496373690820da95cdbe914ae7a89f7cb2fa9c41480cedea1b958fa486ef835ec5
6
+ metadata.gz: 9b57ed28418567ae153861bdd896ececf0a67140b546c13ded3dc368dc517b547782d97b7721196398dd8ba8cfe6123e843f1630e4cd343707355d467a4ecc65
7
+ data.tar.gz: d57b106d02279bb17cf7e782fc0e5744105dd01d959e65c8f286f748b50ecff65493e6cb4fe9011e5f3604e9af94939524afdbd7f9bde9a54b8314c445fd210b
data/README.md CHANGED
@@ -1,52 +1,154 @@
1
- # flutter_version plugin
1
+ # flutter_version (Fastlane plugin)
2
+ <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
3
+ [![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors-)
4
+ <!-- ALL-CONTRIBUTORS-BADGE:END -->
2
5
 
3
6
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-flutter_version)
4
7
  [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/tianhaoz95/fastlane-plugin-flutter_version)
8
+ [![codecov](https://codecov.io/gh/tianhaoz95/fastlane-plugin-flutter_version/branch/master/graph/badge.svg)](https://codecov.io/gh/tianhaoz95/fastlane-plugin-flutter_version)
5
9
 
6
10
  flutter_version is a Fastlane plugin to retrieve version code from Flutter projects which can be used to release changlogs and other metadata to marketplaces.
7
11
 
8
- ## Getting Started
12
+ ## Installation
9
13
 
10
14
  This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-flutter_version`, add it to your project by adding the following lines in `Gemfile`:
11
15
 
12
- ```Gemfile
13
- gem "fastlane-plugin-flutter_version", git: "https://github.com/tianhaoz95/fastlane-plugin-flutter-version"
14
- ```
16
+ ### From GitHub registry (recommended)
15
17
 
16
- ## About flutter_version
18
+ Install from the command line:
19
+
20
+ ```bash
21
+ gem install fastlane-plugin-flutter_version --version "1.0.0" --source "https://rubygems.pkg.github.com/tianhaoz95"
22
+ ```
17
23
 
18
- A plugin to retrieve versioning information for Flutter projects.
24
+ Install via Gemfile:
19
25
 
20
- ## Example
26
+ ```bash
27
+ source "https://rubygems.pkg.github.com/tianhaoz95" do
28
+ gem "fastlane-plugin-flutter_version", "1.0.0"
29
+ end
30
+ ```
21
31
 
22
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
32
+ Check out the instructions in [GitHub Registry](https://github.com/tianhaoz95/fastlane-plugin-flutter_version/packages/143774).
23
33
 
24
- ## Run tests for this plugin
34
+ ### From RubyGems registry
25
35
 
26
- To run both the tests, and code style validation, run
36
+ Install from the command line:
27
37
 
38
+ ```bash
39
+ gem install fastlane-plugin-flutter_version
28
40
  ```
29
- rake
41
+
42
+ Install via Gemfile:
43
+
44
+ ```bash
45
+ gem 'fastlane-plugin-flutter_version', '~> 1.0', '>= 1.0.1'
30
46
  ```
31
47
 
32
- To automatically fix many of the styling issues, use
48
+ Check out the instructions [here](https://rubygems.org/gems/fastlane-plugin-flutter_version).
33
49
 
50
+ ### Directly from Github
51
+
52
+ ```Gemfile
53
+ gem "fastlane-plugin-flutter_version", git: "https://github.com/tianhaoz95/fastlane-plugin-flutter-version"
34
54
  ```
35
- rubocop -a
55
+
56
+ ## Usage
57
+
58
+ ### Android example
59
+
60
+ The following example releases a Android app to Google Play Store without needing to manually specify the app version:
61
+
62
+ ```ruby
63
+ desc "submit to internal track in Google Play Store"
64
+ lane :internal do
65
+ Dir.chdir "../.." do sh("flutter", "build", "appbundle", "--release") end # Call Flutter Build
66
+ gradle(task: 'bundle', build_type: 'Release')
67
+ upload_to_play_store(
68
+ track: 'internal',
69
+ version_code: flutter_version()["version_code"],
70
+ aab: '../build/app/outputs/bundle/release/app-release.aab',
71
+ skip_upload_screenshots: true,
72
+ skip_upload_images: true
73
+ )
74
+ end
36
75
  ```
37
76
 
38
- ## Issues and Feedback
77
+ The line `flutter_version()` fetches the version information from the `pubspec.yaml` file from the Flutter project and parses the version information from the file. This is convenient for continuous integration because it saves the effort for developers to keep track of version information in multiple places.
78
+
79
+ For more details, check out the [example project configuration](https://github.com/tianhaoz95/photochat/blob/master/photochatapp/android/fastlane/Fastfile).
80
+
81
+ ### iOS example
82
+
83
+ The following example releases an iOS app to TestFlight without needing to manually specify the app version or build number:
84
+
85
+ ```ruby
86
+ desc "submit to TestFlight"
87
+ lane :internal do
88
+ Dir.chdir "../.." do sh("flutter", "build", "ios", "--release", "--no-codesign") end # Call Flutter Build
89
+ # https://docs.fastlane.tools/actions/increment_version_number/
90
+ increment_version_number(
91
+ xcodeproj: "Runner.xcodeproj",
92
+ version_number: flutter_version()["version_name"] # Set a specific version number
93
+ )
94
+ # https://docs.fastlane.tools/actions/increment_build_number/
95
+ increment_build_number(
96
+ xcodeproj: "Runner.xcodeproj",
97
+ build_number: flutter_version()["version_code"] # Set a specific build number
98
+ )
99
+ build_app(workspace: "Runner.xcworkspace", export_method: "app-store")
100
+ upload_to_testflight
101
+ end
102
+ ```
103
+
104
+ ### Available options
105
+
106
+ | Name | Description | Optional | Type | Default |
107
+ |:---:|:---:|:---:|:---:|:---:|
108
+ | `pubspec_location` | The location of the `pubspec.yaml` file (relative to `Fastfile`). For details, see [here](https://tianhaoz.com/fastlane-plugin-flutter_version/#/options?id=flutter-config-file-location). | :white_check_mark: | `String` | `../pubspec.yaml` |
109
+ | `should_omit_version_code` | If the version code should be omitted for projects that do not use a version code. For details, see [here](https://tianhaoz.com/fastlane-plugin-flutter_version/#/options?id=version-code-omission). | :white_check_mark: | `Boolean` | `false` |
39
110
 
40
- For any other issues and feedback about this plugin, please submit it to this repository.
111
+ ## About Fastlane
41
112
 
42
- ## Troubleshooting
113
+ Fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
114
+
115
+ ### Issues and feedback
116
+
117
+ For any other issues and feedback about this plugin, please submit it to [this repository](https://github.com/tianhaoz95/fastlane-plugin-flutter_version).
118
+
119
+ ### Troubleshooting
43
120
 
44
121
  If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
45
122
 
46
- ## Using _fastlane_ Plugins
123
+ ### Using Fastlane plugins
47
124
 
48
125
  For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
49
126
 
50
- ## About _fastlane_
51
-
52
- _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
127
+ ## Contributors
128
+
129
+ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
130
+
131
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
132
+ <!-- prettier-ignore-start -->
133
+ <!-- markdownlint-disable -->
134
+ <table>
135
+ <tr>
136
+ <td align="center"><a href="https://www.shunkakinoki.com/"><img src="https://avatars0.githubusercontent.com/u/39187513?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Shun Kakinoki</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=shunkakinoki" title="Code">💻</a></td>
137
+ <td align="center"><a href="http://tianhaoz.com"><img src="https://avatars3.githubusercontent.com/u/16887772?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tianhao Zhou</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=tianhaoz95" title="Code">💻</a></td>
138
+ <td align="center"><a href="https://github.com/davidbrenner"><img src="https://avatars3.githubusercontent.com/u/236870?v=4?s=100" width="100px;" alt=""/><br /><sub><b>davidbrenner</b></sub></a><br /><a href="#ideas-davidbrenner" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=davidbrenner" title="Documentation">📖</a></td>
139
+ <td align="center"><a href="http://lahaus.com"><img src="https://avatars2.githubusercontent.com/u/76348?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Gomez</b></sub></a><br /><a href="#ideas-danielgomezrico" title="Ideas, Planning, & Feedback">🤔</a></td>
140
+ <td align="center"><a href="https://github.com/RtypeStudios"><img src="https://avatars3.githubusercontent.com/u/990114?v=4?s=100" width="100px;" alt=""/><br /><sub><b>RtypeStudios</b></sub></a><br /><a href="#question-RtypeStudios" title="Answering Questions">💬</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=RtypeStudios" title="Documentation">📖</a> <a href="#tutorial-RtypeStudios" title="Tutorials">✅</a></td>
141
+ <td align="center"><a href="https://github.com/M123-dev"><img src="https://avatars.githubusercontent.com/u/39344769?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marvin M</b></sub></a><br /><a href="#ideas-M123-dev" title="Ideas, Planning, & Feedback">🤔</a></td>
142
+ <td align="center"><a href="https://www.upwork.com/o/profiles/users/~015f2268be670e1246/"><img src="https://avatars.githubusercontent.com/u/8264639?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Muhammad Adil</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=ch-muhammad-adil" title="Documentation">📖</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/issues?q=author%3Ach-muhammad-adil" title="Bug reports">🐛</a></td>
143
+ </tr>
144
+ <tr>
145
+ <td align="center"><a href="https://lesliearkorful.com"><img src="https://avatars.githubusercontent.com/u/4087388?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Leslie Arkorful</b></sub></a><br /><a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/issues?q=author%3Alesliearkorful" title="Bug reports">🐛</a> <a href="https://github.com/tianhaoz95/fastlane-plugin-flutter_version/commits?author=lesliearkorful" title="Documentation">📖</a></td>
146
+ </tr>
147
+ </table>
148
+
149
+ <!-- markdownlint-restore -->
150
+ <!-- prettier-ignore-end -->
151
+
152
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
153
+
154
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
@@ -1,10 +1,13 @@
1
- require "fastlane/plugin/flutter_version/version"
1
+ # frozen_string_literal: true
2
+
3
+ require 'fastlane/plugin/flutter_version/version'
2
4
 
3
5
  module Fastlane
6
+ # The plugin wrapper
4
7
  module FlutterVersion
5
8
  # Return all .rb files inside the "actions" and "helper" directory
6
9
  def self.all_classes
7
- Dir[File.expand_path("**/{actions,helper}/*.rb", File.dirname(__FILE__))]
10
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
11
  end
9
12
  end
10
13
  end
@@ -1,63 +1,96 @@
1
- require "fastlane/action"
2
- require "yaml"
3
- require_relative "../helper/flutter_version_helper"
1
+ # frozen_string_literal: true
2
+
3
+ require 'fastlane/action'
4
+ require 'yaml'
5
+ require_relative '../helper/flutter_version_helper'
4
6
 
5
7
  module Fastlane
6
8
  module Actions
9
+ # The top-level plugin interface
7
10
  class FlutterVersionAction < Action
8
11
  def self.run(params)
9
12
  pubspec_location = params[:pubspec_location]
10
- pubspec = YAML.load_file(pubspec_location)
11
- version = pubspec["version"]
12
- UI.message("The full version is: ".concat(version))
13
- if not version.include? "+"
14
- raise "Verson code indicator (+) not found in pubspec.yml"
13
+ should_omit_version_code = params[:should_omit_version_code]
14
+ begin
15
+ pubspec = YAML.load_file(pubspec_location)
16
+ # rubocop:disable Style/RescueStandardError
17
+ rescue
18
+ raise 'Read pubspec.yaml failed'
19
+ end
20
+ # rubocop:enable Style/RescueStandardError
21
+ version = pubspec['version']
22
+ UI.message('The full version is: '.dup.concat(version))
23
+ has_version_code_pattern = version.include?('+')
24
+ if should_omit_version_code && has_version_code_pattern
25
+ raise 'Version code omitted but verson code indicator (+) found in pubspec.yml'
26
+ end
27
+ if !should_omit_version_code && !has_version_code_pattern
28
+ raise 'Verson code indicator (+) not found in pubspec.yml'
15
29
  end
16
- version_sections = version.split("+")
30
+
31
+ version_sections = if should_omit_version_code
32
+ [version, 'NOT_FOUND']
33
+ else
34
+ version.split('+')
35
+ end
17
36
  version_name = version_sections[0]
18
37
  version_code = version_sections[1]
19
- UI.message("The version name: ".concat(version_name))
20
- UI.message("The version code: ".concat(version_code))
21
- return {
22
- "version_code" => version_code,
23
- "version_name" => version_name,
24
- }
38
+ UI.message('The version name: '.dup.concat(version_name))
39
+ UI.message('The version code: '.dup.concat(version_code))
40
+ {
41
+ 'version_code' => version_code,
42
+ 'version_name' => version_name
43
+ }
25
44
  end
26
45
 
27
46
  def self.description
28
- "A plugin to retrieve versioning information for Flutter projects."
47
+ 'A plugin to retrieve versioning information for Flutter projects.'
29
48
  end
30
49
 
31
50
  def self.authors
32
- ["tianhaoz95"]
51
+ ['tianhaoz95']
33
52
  end
34
53
 
35
54
  def self.return_value
36
55
  [
37
- ["VERSION_CODE", "The version code"],
56
+ ['VERSION_CODE', 'The version code'],
57
+ ['VERSION_NAME', 'The verison name']
38
58
  ]
39
59
  end
40
60
 
41
61
  def self.details
42
- "The plugin reads and parses pubspec.yml of a Flutter project and composes the versioning information into structured data to be consumed by various releasing automations."
62
+ "The plugin reads and parses pubspec.yml of a Flutter
63
+ project and composes the versioning information into
64
+ structured data to be consumed by various releasing
65
+ automations."
43
66
  end
44
67
 
45
68
  def self.available_options
46
69
  [
47
70
  FastlaneCore::ConfigItem.new(
48
71
  key: :pubspec_location,
49
- env_name: "PUBSPEC_LOCATION",
50
- description: "The location of pubspec.yml",
72
+ env_name: 'PUBSPEC_LOCATION',
73
+ description: 'The location of pubspec.yml',
51
74
  optional: true,
52
75
  type: String,
53
- default_value: "../pubspec.yaml",
76
+ default_value: '../pubspec.yaml'
54
77
  ),
78
+ FastlaneCore::ConfigItem.new(
79
+ key: :should_omit_version_code,
80
+ env_name: 'SHOULD_OMIT_VERSION_CODE',
81
+ description: 'If the version code should be omitted for projects that do not use a version code',
82
+ optional: true,
83
+ type: Boolean,
84
+ default_value: false
85
+ )
55
86
  ]
56
87
  end
57
88
 
58
- def self.is_supported?(platform)
89
+ # rubocop:disable Naming/PredicateName
90
+ def self.is_supported?(_platform)
59
91
  true
60
92
  end
93
+ # rubocop:enable Naming/PredicateName
61
94
  end
62
95
  end
63
96
  end
@@ -1,15 +1,18 @@
1
- require "fastlane_core/ui/ui"
1
+ # frozen_string_literal: true
2
2
 
3
+ require 'fastlane_core/ui/ui'
4
+
5
+ # Fastlane namespace
3
6
  module Fastlane
4
- UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
7
+ UI = FastlaneCore::UI unless Fastlane.const_defined?('UI')
5
8
 
6
9
  module Helper
10
+ # Generated helper function for the plugin
7
11
  class FlutterVersionHelper
8
12
  # class methods that you define here become available in your action
9
13
  # as `Helper::FlutterVersionHelper.your_method`
10
- #
11
14
  def self.show_message
12
- UI.message("Hello from the flutter_version plugin helper!")
15
+ UI.message('Hello from the flutter_version plugin helper!')
13
16
  end
14
17
  end
15
18
  end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fastlane
2
4
  module FlutterVersion
3
- VERSION = "0.1.7"
5
+ VERSION = '1.1.3'
4
6
  end
5
7
  end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-flutter_version
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - tianhaoz95
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-29 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: pry
14
+ name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
@@ -25,21 +25,21 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: bundler
28
+ name: fastlane
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: 2.142.0
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: 2.142.0
41
41
  - !ruby/object:Gem::Dependency
42
- name: rspec
42
+ name: pry
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
@@ -53,7 +53,7 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: rspec_junit_formatter
56
+ name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
@@ -67,7 +67,7 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: rake
70
+ name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
@@ -81,21 +81,21 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
- name: rubocop
84
+ name: rspec_junit_formatter
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - '='
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: 0.80.1
89
+ version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - '='
94
+ - - ">="
95
95
  - !ruby/object:Gem::Version
96
- version: 0.80.1
96
+ version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
- name: rubocop-require_tools
98
+ name: rubocop
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
@@ -109,7 +109,7 @@ dependencies:
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
- name: simplecov
112
+ name: rubocop-require_tools
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - ">="
@@ -123,19 +123,19 @@ dependencies:
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
- name: fastlane
126
+ name: simplecov
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="
130
130
  - !ruby/object:Gem::Version
131
- version: 2.142.0
131
+ version: '0'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
- version: 2.142.0
138
+ version: '0'
139
139
  description:
140
140
  email: tianhaoz@umich.edu
141
141
  executables: []
@@ -160,14 +160,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
160
160
  requirements:
161
161
  - - ">="
162
162
  - !ruby/object:Gem::Version
163
- version: '0'
163
+ version: '2.6'
164
164
  required_rubygems_version: !ruby/object:Gem::Requirement
165
165
  requirements:
166
166
  - - ">="
167
167
  - !ruby/object:Gem::Version
168
168
  version: '0'
169
169
  requirements: []
170
- rubygems_version: 3.0.3
170
+ rubygems_version: 3.0.3.1
171
171
  signing_key:
172
172
  specification_version: 4
173
173
  summary: A plugin to retrieve versioning information for Flutter projects.