fastlane_core 0.48.2 → 0.48.3

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: ff906faf7126e901cd09d4f4a1be9738c5175191
4
- data.tar.gz: 00efc487a9990cc251ba06d2765ad12e90ad64c0
3
+ metadata.gz: d3f7a756d93705d812415ee2e6bced57f3010edb
4
+ data.tar.gz: d5a658c0eab0fb7e3198c75e569617671ebd558b
5
5
  SHA512:
6
- metadata.gz: e8c780f75d3abfdeffaaf3629e36307e00ee08ada9c36a8e232144e92eef6fde8014c80385fff206d19c451ceae0e31dfc04b6c1d4cc1e4feae481e7720ff4da
7
- data.tar.gz: ad0d9d8db1ec0a01c6be13f5d5274c4047fe8c4e55e77182de185b08acb4a61084a58b4304fa62a12ff6b276546df4a966464ed3e0650abd92aca2532a314269
6
+ metadata.gz: 4744590185a0959bec598895bf316030989c3051a339875c01a21aa5847628773fde90ea1c2a4296de4561f3931fa43554211f12d9683986ad45aa8cbd9ec764
7
+ data.tar.gz: 1a37197da3eaa8cb8e788fb5b0c09c18c7ce433e36e8f73429e2a85323e988e7e5f9ddcaf380ae1fd5a0c37beb54e143c175f770cfd8f326ef8883a31b32502c
@@ -73,12 +73,12 @@ module FastlaneCore
73
73
  # Gets rid of annoying plugin info warnings.
74
74
  attr_accessor :xcodebuild_suppress_stderr
75
75
 
76
- def initialize(options)
76
+ def initialize(options, xcodebuild_list_silent: false, xcodebuild_suppress_stderr: false)
77
77
  self.options = options
78
78
  self.path = File.expand_path(options[:workspace] || options[:project])
79
79
  self.is_workspace = (options[:workspace].to_s.length > 0)
80
- self.xcodebuild_list_silent = options[:xcodebuild_list_silent]
81
- self.xcodebuild_suppress_stderr = options[:xcodebuild_suppress_stderr]
80
+ self.xcodebuild_list_silent = xcodebuild_list_silent
81
+ self.xcodebuild_suppress_stderr = xcodebuild_suppress_stderr
82
82
 
83
83
  if !path or !File.directory?(path)
84
84
  UI.user_error!("Could not find project at path '#{path}'")
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.48.2".freeze
2
+ VERSION = "0.48.3".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.2
4
+ version: 0.48.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause