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: 5dc2c373a820abfa36ddda6823d18c1a3fb5f64ea5d471c25d384c6026673f62
4
- data.tar.gz: 361b22737e6c5070759248ede9bd58fb06489564908ce4a5497b32f826442e3a
3
+ metadata.gz: 8110274f40e2962a9c7b5606cdc60105b4d60ceeb24bf55669eff48356019a19
4
+ data.tar.gz: 6c81966bbee8bd96a3874815f83c4e02df9fc4243ede03d6ff61db5903a24aa6
5
5
  SHA512:
6
- metadata.gz: 95d49ccc966a09331eed2121cfc80c2573f356d025fb9cb19dc8d7b8a7edf7a9cb5c0d7fc9dfb6ed2f8302384f83647acf0d9fb440488f4c3da9ff31448cebed
7
- data.tar.gz: 4351523aa41e3335e3385c009b44c190b4b0434d12260e859f23fbbbdde2cf349c3f8029e24e0951f0937beabcdd9588e8ba4fcb33ab12be8eab245ca9aa4ea5
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fastlane
4
4
  module ApadmiGrout
5
- VERSION = "2.6.0"
5
+ VERSION = "2.6.1"
6
6
  end
7
7
  end
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.0
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: 2023-09-20 00:00:00.000000000 Z
11
+ date: 2024-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apadmi_grout