fastlane 1.105.1 → 1.105.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 +4 -4
- data/lib/fastlane/actions/update_project_team.rb +2 -2
- data/lib/fastlane/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf40167e5c7bed5398ff04ce119b17bfbd6f94b6
|
4
|
+
data.tar.gz: b3104691a49b79a6e2f4e012caf212a3dc772ed6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdfe0c4c3311977a58248ece5d6c26228787dd00b6d0ec44814f1193334515f7176d772030e14222106266d3c23f0a14e9b4959f74f789b1a808526dbf13483c
|
7
|
+
data.tar.gz: af839b154cec993c3834122e0f51ec1c67b34fff778b449f4054b5dbbf58a3db7c9298eee4ca9c2bdbffbf40457dd2cfc4e36dbf70954861d495f904d6c29f04
|
@@ -12,8 +12,8 @@ module Fastlane
|
|
12
12
|
UI.message("Updating development team (#{params[:teamid]}) for the given project '#{path}'")
|
13
13
|
|
14
14
|
p = File.read(path)
|
15
|
-
p.gsub!(/DevelopmentTeam = .*;/, "DevelopmentTeam = #{
|
16
|
-
p.gsub!(/DEVELOPMENT_TEAM = .*;/, "DEVELOPMENT_TEAM = #{
|
15
|
+
p.gsub!(/DevelopmentTeam = .*;/, "DevelopmentTeam = #{params[:teamid]};")
|
16
|
+
p.gsub!(/DEVELOPMENT_TEAM = .*;/, "DEVELOPMENT_TEAM = #{params[:teamid]};")
|
17
17
|
File.write(path, p)
|
18
18
|
|
19
19
|
UI.success("Successfully updated project settings to use Developer Team ID '#{params[:teamid]}'")
|
data/lib/fastlane/version.rb
CHANGED
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: 1.105.
|
4
|
+
version: 1.105.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -1013,7 +1013,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1013
1013
|
version: '0'
|
1014
1014
|
requirements: []
|
1015
1015
|
rubyforge_project:
|
1016
|
-
rubygems_version: 2.
|
1016
|
+
rubygems_version: 2.6.7
|
1017
1017
|
signing_key:
|
1018
1018
|
specification_version: 4
|
1019
1019
|
summary: The easiest way to automate building and releasing your iOS and Android apps
|