fastlane-plugin-apadmi_grout 2.6.0 → 2.6.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8110274f40e2962a9c7b5606cdc60105b4d60ceeb24bf55669eff48356019a19
|
4
|
+
data.tar.gz: 6c81966bbee8bd96a3874815f83c4e02df9fc4243ede03d6ff61db5903a24aa6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90418046b878b4c8c175deb16827fce872d1d0c782ccb51a39c913cdbcce5b164c926eadc2817b39937b17f10853740d2418881825efee9168fbce35c7281334
|
7
|
+
data.tar.gz: 1d6be7709401d0723d04ffa75f026b4ba7a23a04776677085b55baecd2c4c0752076d2230dced217af727754cdd8a4d59c002dfdeeaada8a3af8169581002342
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Fastlane Plugin Changelog
|
2
2
|
|
3
|
+
## [2.6.1] - 2024-01-09
|
4
|
+
* Fix: missing blank? method because ActiveSupport requires you to load the extensions explicitly from 7.1
|
5
|
+
* Fix: Add null check to mapping path before file check
|
6
|
+
|
3
7
|
## [2.6.0] - 2023-09-20
|
4
8
|
* Add option to expand ADO tickets with additional information
|
5
9
|
* Add ability to assign users to ADO tickets
|
@@ -63,7 +63,7 @@ module Fastlane
|
|
63
63
|
) + ".txt"
|
64
64
|
# rubocop:enable Style/StringConcatenation
|
65
65
|
new_mapping_path = "#{params[:output_directory]}/#{mapping_filename}"
|
66
|
-
if File.exist?(mapping_path)
|
66
|
+
if !mapping_path.nil? && File.exist?(mapping_path)
|
67
67
|
File.rename(mapping_path, new_mapping_path)
|
68
68
|
logger.success("Generated #{mapping_filename} in #{params[:output_directory]}")
|
69
69
|
lane_context[SharedValues::ANDROID_MAPPING_FILE_PATH] = new_mapping_path
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-apadmi_grout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Apadmi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apadmi_grout
|