fastlane 2.31.0.beta.20170516010048 → 2.31.0.beta.20170517010031
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 +4 -4
- data/fastlane/lib/fastlane/actions/chatwork.rb +1 -1
- data/fastlane/lib/fastlane/actions/set_changelog.rb +3 -2
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +2 -4
- data/supply/lib/supply/commands_generator.rb +2 -2
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a30951842470091899d3906a174d24afb87bf26
|
4
|
+
data.tar.gz: 5d4f934013d9170cd40f388888c4a86804af7f26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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/
|
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("👼
|
66
|
+
UI.success("👼 Successfully pushed the new changelog to #{v.url}")
|
66
67
|
end
|
67
68
|
|
68
69
|
def self.default_changelog_path
|
@@ -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
|
-
|
108
|
-
true
|
106
|
+
valid?(value)
|
109
107
|
end
|
110
108
|
|
111
109
|
# Make sure, the value is valid (based on the verify block)
|
112
|
-
#
|
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.
|
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-
|
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
|
-
-
|
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
|
-
-
|
1375
|
-
- supply/lib
|
1368
|
+
- pem/lib
|
1376
1369
|
- cert/lib
|
1377
|
-
-
|
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:
|