fastlane-plugin-ensure_xcode_build_version 1.0.1 → 2.0.0
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 3f7f53d78b59824572b447852346a9bcfaa0e37b41d5f4f5d0e8b740d936fa07
|
|
4
|
+
data.tar.gz: 42273681fbe13b2b9024b356ce7f125d95b91f34e6ea78af46b6860cdb314d54
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82fcbd10e54d4b8577d497815373199d1bafb8b6029ea773a166c785b55cc5fe60cd47f571e97921b65d1b573fae103f815e85271763289203d0a196c5fafdf9
|
|
7
|
+
data.tar.gz: 9058f87ddfa8936b7f3ad8a1128c256a49bdb16cc22d30b49dbd7133ded0ffc57c0e47acaac273bd07055600ab8c282f0a542799207d41b9de5020e513886359
|
data/lib/fastlane/plugin/ensure_xcode_build_version/actions/ensure_xcode_build_version_action.rb
CHANGED
|
@@ -2,9 +2,8 @@ module Fastlane
|
|
|
2
2
|
module Actions
|
|
3
3
|
class EnsureXcodeBuildVersionAction < Action
|
|
4
4
|
def self.run(params)
|
|
5
|
-
Actions.verify_gem!('xcode-install')
|
|
6
5
|
required_build_version = params[:build_version]
|
|
7
|
-
selected_build_version = sh("
|
|
6
|
+
selected_build_version = sh("xcodebuild -version").match(/Build version (.*)$/)[1]
|
|
8
7
|
|
|
9
8
|
if selected_build_version == required_build_version
|
|
10
9
|
UI.success("Selected Xcode Build version is correct: #{selected_build_version}")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-ensure_xcode_build_version
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fumiya Nakamura
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -108,7 +108,7 @@ dependencies:
|
|
|
108
108
|
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
|
-
description:
|
|
111
|
+
description:
|
|
112
112
|
email: nakamurafumiya003@gmail.com
|
|
113
113
|
executables: []
|
|
114
114
|
extensions: []
|
|
@@ -125,7 +125,7 @@ homepage: https://github.com/nafu/fastlane-plugin-ensure_xcode_build_version
|
|
|
125
125
|
licenses:
|
|
126
126
|
- MIT
|
|
127
127
|
metadata: {}
|
|
128
|
-
post_install_message:
|
|
128
|
+
post_install_message:
|
|
129
129
|
rdoc_options: []
|
|
130
130
|
require_paths:
|
|
131
131
|
- lib
|
|
@@ -140,10 +140,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
140
|
- !ruby/object:Gem::Version
|
|
141
141
|
version: '0'
|
|
142
142
|
requirements: []
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
signing_key:
|
|
143
|
+
rubygems_version: 3.5.22
|
|
144
|
+
signing_key:
|
|
146
145
|
specification_version: 4
|
|
147
146
|
summary: Ensure Xcode Build Version for working with Beta, GM and Release
|
|
148
147
|
test_files: []
|
|
149
|
-
has_rdoc:
|