fastlane-plugin-update_xcodeproj 0.1.0 → 0.1.1

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
2
  SHA1:
3
- metadata.gz: c684e09cfd0d6f1ce722f9443aecfc80bdee75f8
4
- data.tar.gz: 2cd2a7d136696339ebf508e0e58b26acdabb5c5b
3
+ metadata.gz: 3f68541842c459c6e5e6000c22cd645849a32432
4
+ data.tar.gz: f94d254f95aa8162a005eabd4228c37692feec6a
5
5
  SHA512:
6
- metadata.gz: 48da1003298c6ffaa7bd6096a71c1aebd74848f5285cddee65d2051f14a25965b91848bcb051cf21803c26c24c242bcddfb5882fd7b95512c0947bd8f735dd39
7
- data.tar.gz: 17e2bd0bf2d2a167a77d0ece565f2022526b56f36cbfa4e4fc453496c3e8a8bead61ab5d8930973282c05d593eb9f67e6fbfe6e8c30d156b64082288bef6c363
6
+ metadata.gz: 7ff84af16f45d1ffe6a1f780838c3230468eec2325d052a2d422508b472b52aa68b1e5b343bdabcde3e063e385a140ed39f002496fa1c5417e31be39f97a82f5
7
+ data.tar.gz: b4826cc27d6ec4138be72df47b50fc12403775c354092808179af88eee1c203495c81fb9b74ac8fd9213bb9a49743a1323d23382225292ccc1a7289fb244b45c
@@ -37,7 +37,7 @@ module Fastlane
37
37
  env_name: "UPDATE_XCODEPROJ_XCODEPROJ",
38
38
  description: "Path to your Xcode project",
39
39
  optional: true,
40
- default_value: DIR['*.xcodeproj'].first,
40
+ default_value: Dir['*.xcodeproj'].first,
41
41
  type: String,
42
42
  verify_block: proc do |value|
43
43
  UI.user_error!("Please pass the path to the project, not the workspace") unless value.end_with?(".xcodeproj")
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Fastlane
3
3
  module UpdateXcodeproj
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-update_xcodeproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fumiya Nakamura