fastlane-plugin-ensure_xcode_build_version 0.1.1.1 → 0.1.1.2

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
  SHA1:
3
- metadata.gz: 370f0fd6235dfdd919f4f65f07decff6c9f65d78
4
- data.tar.gz: 4780878f0cc8ff5de383070ee14b10b55c7cda24
3
+ metadata.gz: 2c4094877593f4323fecfc123dcb9a5981f4875e
4
+ data.tar.gz: f152fb1f667a18cadeb4e9042f41788c18a70e6e
5
5
  SHA512:
6
- metadata.gz: e5b9a507a0128040126a7703d0cda1d2336fa70a5f1c2fdc1d596fc9ded96935e6b88647fbe4fbcb53566f17702b96ee682040d045d8c1b6a7f6d120e866c832
7
- data.tar.gz: 7e07036c068b3e2e0b5a9b76fc7442a0ac306f6a8bee025904f846c42fb578f255dd80077a664af4f26b26c930bd000c501a0e633009917eaca40a4194767bd7
6
+ metadata.gz: bf005c993c90ef870e7ac8beeff3b01440b8da9fe9ae1c1ed82fa3bcd8c93c94177c825bc124dd80546d532b7c671cf7225addadd5610c21c12655d011fc06e0
7
+ data.tar.gz: 548d01c4e1ee21a858929f404b1667bb38da96eccab64f0b5d0bb3f02481743c1b959397aa40f6f64f1271f1496e120b5b7b933ab1dbf070cd545ed4aab3c53b
@@ -3,8 +3,15 @@
3
3
  # We have to unset those variables for rbenv, rvm and when the user uses bundler
4
4
  unset RUBYLIB
5
5
  unset RUBYOPT
6
- unset BUNDLE_BIN_PATH
7
- unset _ORIGINAL_GEM_PATH
8
- unset BUNDLE_GEMFILE
6
+ # If we unset Bundle related path, we got errors:
7
+ # /Users/distiller/ookami-ios/vendor/bundle/ruby/2.3.0/bin/xcversion:22:in `<main>': undefined method `activate_bin_path' for Gem:Module (NoMethodError)
8
+ # unset BUNDLE_BIN_PATH
9
+ # unset _ORIGINAL_GEM_PATH
10
+ # unset BUNDLE_GEMFILE
11
+ # Even if we do not use rbenv in some environments such as CircleCI,
12
+ # We also need to unset GEM_HOME and GEM_PATH explicitly.
13
+ # More information https://github.com/fastlane/fastlane/issues/6277
14
+ unset GEM_HOME
15
+ unset GEM_PATH
9
16
 
10
17
  xcversion selected | tail -1 | xargs echo -n
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module EnsureXcodeBuildVersion
3
- VERSION = "0.1.1.1"
3
+ VERSION = "0.1.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-ensure_xcode_build_version
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1.1
4
+ version: 0.1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fumiya Nakamura