fastlane 2.31.0.beta.20170516010048 → 2.31.0.beta.20170517010031

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: 3f5c67821d1ad65806241542913482df0ea9b4ed
4
- data.tar.gz: c371cc2ea5e31b709129e494b30d5e652e501960
3
+ metadata.gz: 5a30951842470091899d3906a174d24afb87bf26
4
+ data.tar.gz: 5d4f934013d9170cd40f388888c4a86804af7f26
5
5
  SHA512:
6
- metadata.gz: 698b1a8e1f33f096158307063cfeea219548da6077af2c09d116de454ad89ad40c8592ffd07ac85ba14d26a1e40345aa6cce504bb42c14162d7ade942727b7d0
7
- data.tar.gz: 38376b5234bfc22ad10631c4411de0516faea631fb01b649a96aa2f00f4749f081bc43938bdfb177d8feb9f2597f8159f5749c97a209ce75088a7798ea7e818b
6
+ metadata.gz: 3305e215b86980217d17d9223fa98864e8733e27d603e20a4c754e381a0d5c374cce905d82a60fe425b4c73dbace93cae462432128f4c2b5def3dcf725b61af0
7
+ data.tar.gz: 33181d1e04b10e8bc9c6fddcf0e77c7dca5eddbda0584ed3310eb562004ad7464e82694b09c7476a99c9c8339ada975558f3ccb29fbeb67e2b9a84c03a2cb0e5
@@ -10,7 +10,7 @@ module Fastlane
10
10
 
11
11
  emoticon = (options[:success] ? '(dance)' : ';(')
12
12
 
13
- uri = URI.parse("https://api.chatwork.com/v1/rooms/#{options[:roomid]}/messages")
13
+ uri = URI.parse("https://api.chatwork.com/v2/rooms/#{options[:roomid]}/messages")
14
14
  https = Net::HTTP.new(uri.host, uri.port)
15
15
  https.use_ssl = true
16
16
 
@@ -9,7 +9,8 @@ module Fastlane
9
9
  Spaceship::Tunes.select_team
10
10
  UI.message("Login successful")
11
11
 
12
- app = Spaceship::Application.find(params[:app_identifier])
12
+ app = Spaceship::Application.find(params[:app_identifier]) || Spaceship::Application.find(params[:app_identifier], mac: true)
13
+ UI.user_error!("Couldn't find app with identifier #{params[:app_identifier]}") if app.nil?
13
14
 
14
15
  version_number = params[:version]
15
16
  unless version_number
@@ -62,7 +63,7 @@ module Fastlane
62
63
  UI.message("Uploading changes to iTunes Connect...")
63
64
  v.save!
64
65
 
65
- UI.success("👼 Successfully pushed the new changelog to #{v.url}")
66
+ UI.success("👼 Successfully pushed the new changelog to #{v.url}")
66
67
  end
67
68
 
68
69
  def self.default_changelog_path
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.31.0.beta.20170516010048'.freeze
2
+ VERSION = '2.31.0.beta.20170517010031'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -102,14 +102,12 @@ module FastlaneCore
102
102
  @allow_shell_conversion = (type == :shell_string)
103
103
  end
104
104
 
105
- # This will raise an exception if the value is not valid
106
105
  def verify!(value)
107
- UI.user_error!("Invalid value '#{value}' for option '#{self}'") unless valid?(value)
108
- true
106
+ valid?(value)
109
107
  end
110
108
 
111
109
  # Make sure, the value is valid (based on the verify block)
112
- # Returns false if that's not the case
110
+ # Raises an exception if the value is invalid
113
111
  def valid?(value)
114
112
  # we also allow nil values, which do not have to be verified.
115
113
  if value
@@ -29,7 +29,7 @@ module Supply
29
29
  c.syntax = 'fastlane supply'
30
30
  c.description = 'Run a deploy process'
31
31
 
32
- FastlaneCore::CommanderGenerator.new.generate(Supply::Options.available_options)
32
+ FastlaneCore::CommanderGenerator.new.generate(Supply::Options.available_options, command: c)
33
33
 
34
34
  c.action do |args, options|
35
35
  Supply.config = FastlaneCore::Configuration.create(Supply::Options.available_options, options.__hash__)
@@ -43,7 +43,7 @@ module Supply
43
43
  c.syntax = 'fastlane supply init'
44
44
  c.description = 'Sets up supply for you'
45
45
 
46
- FastlaneCore::CommanderGenerator.new.generate(Supply::Options.available_options)
46
+ FastlaneCore::CommanderGenerator.new.generate(Supply::Options.available_options, command: c)
47
47
 
48
48
  c.action do |args, options|
49
49
  require 'supply/setup'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.31.0.beta.20170516010048
4
+ version: 2.31.0.beta.20170517010031
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2017-05-16 00:00:00.000000000 Z
18
+ date: 2017-05-17 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -1361,22 +1361,22 @@ metadata:
1361
1361
  post_install_message:
1362
1362
  rdoc_options: []
1363
1363
  require_paths:
1364
+ - supply/lib
1364
1365
  - spaceship/lib
1365
- - fastlane/lib
1366
- - pilot/lib
1367
- - gym/lib
1368
- - credentials_manager/lib
1369
- - fastlane_core/lib
1370
- - sigh/lib
1371
- - pem/lib
1372
- - frameit/lib
1366
+ - snapshot/lib
1373
1367
  - match/lib
1374
- - scan/lib
1375
- - supply/lib
1368
+ - pem/lib
1376
1369
  - cert/lib
1377
- - snapshot/lib
1378
- - produce/lib
1370
+ - sigh/lib
1379
1371
  - screengrab/lib
1372
+ - produce/lib
1373
+ - fastlane/lib
1374
+ - frameit/lib
1375
+ - scan/lib
1376
+ - credentials_manager/lib
1377
+ - fastlane_core/lib
1378
+ - gym/lib
1379
+ - pilot/lib
1380
1380
  - deliver/lib
1381
1381
  required_ruby_version: !ruby/object:Gem::Requirement
1382
1382
  requirements: