fastlane_core 0.36.1 → 0.36.2

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: 5c18dab120ecf92e69ddcb9c7f61c4e60ec2abb3
4
- data.tar.gz: df6fff0ebf3d708e4db194d4718fb2e1531f3966
3
+ metadata.gz: dc5f21c0d1cf5dcb3ad39e52cb5d36189b3b9e98
4
+ data.tar.gz: dd3f467588eb9c1a0b18ae5088954ab0ad3b8505
5
5
  SHA512:
6
- metadata.gz: fa7b7f3fbb4d1e344722a8885ce7b11675269c43076215fff7c96d7d1135c6df0eab975412f11ae3010022f54f5837afd322a399027e294f4555978d1068b979
7
- data.tar.gz: 08ad7cf64684df81de0117a18055adc3d8fa92bc0f20f4d2c60762fd4f82e68977ec6f80187e3a7cd2fa68b1bf7a9cb30bd37b02353280f86e48bfb9cbc356dd
6
+ metadata.gz: 3ee998e51f16ed51bba58d75c39448623cefd56a125a11b9325ca915fd0ef3aa914f63bc5d6f3bdd0ebecec86470fa0902bd8f38152c5b59d6757f14ef277177
7
+ data.tar.gz: 22beb8ab47ecd168522eb7d92d38e4baaf00d8afbdb88e146fab816428fbd3016844f87836ba81750e642e32920e3ce16fdb7645c11e5f5935515af16166de37
@@ -92,9 +92,9 @@ module FastlaneCore
92
92
  else
93
93
  # Special treatment if the user specififed true, false or YES, NO
94
94
  # There is no boolean typoe, so we just do it here
95
- if %w(YES yes true).include?(value)
95
+ if %w(YES yes true TRUE).include?(value)
96
96
  return true
97
- elsif %w(NO no false).include?(value)
97
+ elsif %w(NO no false FALSE).include?(value)
98
98
  return false
99
99
  end
100
100
  end
@@ -1,4 +1,5 @@
1
1
  require 'logger'
2
+ require 'colored'
2
3
 
3
4
  module FastlaneCore
4
5
  # rubocop:disable Metrics/ModuleLength
@@ -46,7 +46,7 @@ module FastlaneCore
46
46
  def download(app_id, dir = nil)
47
47
  dir ||= "/tmp"
48
48
 
49
- Helper.log.info "Going to download app metadata from iTunesConnect"
49
+ Helper.log.info "Going to download app metadata from iTunes Connect"
50
50
  command = build_download_command(@user, @password, app_id, dir)
51
51
  Helper.log.debug build_download_command(@user, 'YourPassword', app_id, dir) if $verbose
52
52
 
@@ -54,7 +54,7 @@ module FastlaneCore
54
54
 
55
55
  itmsp_path = File.join(dir, "#{app_id}.itmsp")
56
56
  if result and File.directory? itmsp_path
57
- Helper.log.info "Successfully downloaded the latest package from iTunesConnect.".green
57
+ Helper.log.info "Successfully downloaded the latest package from iTunes Connect.".green
58
58
  else
59
59
  handle_error(@password)
60
60
  end
@@ -62,7 +62,7 @@ module FastlaneCore
62
62
  result
63
63
  end
64
64
 
65
- # Uploads the modified package back to iTunesConnect
65
+ # Uploads the modified package back to iTunes Connect
66
66
  # @param app_id [Integer] The unique App ID
67
67
  # @param dir [String] the path in which the package file is located
68
68
  # @return (Bool) True if everything worked fine
@@ -71,7 +71,7 @@ module FastlaneCore
71
71
  def upload(app_id, dir)
72
72
  dir = File.join(dir, "#{app_id}.itmsp")
73
73
 
74
- Helper.log.info "Going to upload updated app to iTunesConnect"
74
+ Helper.log.info "Going to upload updated app to iTunes Connect"
75
75
  Helper.log.info "This might take a few minutes, please don't interrupt the script".green
76
76
 
77
77
  command = build_upload_command(@user, @password, dir)
@@ -81,7 +81,7 @@ module FastlaneCore
81
81
 
82
82
  if result
83
83
  Helper.log.info(("-" * 102).green)
84
- Helper.log.info("Successfully uploaded package to iTunesConnect. It might take a few minutes until it's visible online.".green)
84
+ Helper.log.info("Successfully uploaded package to iTunes Connect. It might take a few minutes until it's visible online.".green)
85
85
  Helper.log.info(("-" * 102).green)
86
86
 
87
87
  FileUtils.rm_rf(dir) unless Helper.is_test? # we don't need the package any more, since the upload was successful
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.36.1"
2
+ VERSION = "0.36.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.1
4
+ version: 0.36.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-29 00:00:00.000000000 Z
11
+ date: 2016-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -384,7 +384,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
384
384
  version: '0'
385
385
  requirements: []
386
386
  rubyforge_project:
387
- rubygems_version: 2.4.6
387
+ rubygems_version: 2.4.0
388
388
  signing_key:
389
389
  specification_version: 4
390
390
  summary: Contains all shared code/dependencies of the fastlane.tools