fastlane 2.50.0.beta.20170728010002 → 2.50.0.beta.20170729010003
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/assets/Actions.md.erb +2 -0
- data/fastlane/lib/fastlane/actions/commit_version_bump.rb +0 -2
- data/fastlane/lib/fastlane/actions/hg_commit_version_bump.rb +0 -2
- data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +5 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/gym/README.md +1 -1
- data/gym/lib/gym/detect_values.rb +0 -2
- 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: c62c028acb169bef0349086510289e6ab5a04225
|
4
|
+
data.tar.gz: 8e0fb615e678a0d550834faebc3d9c48d96c1553
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1f1953777604ce33916fc3e0395fd2a4fd19029c54e249fd78306076fd831f34285b659e599e10281c11289eb056575dfae7f1fce03567e768518c395ecebeb
|
7
|
+
data.tar.gz: 0b3e5bd21105624420c838b4664312a9655dd1ac0629c799599e7305cd209a92166786ae2449e8fe5839b114c250fb452bf83361de58b24dbdc6d5d803599926
|
@@ -15,6 +15,8 @@ You can import another `Fastfile` by using the `import` action. This is useful i
|
|
15
15
|
import './path/to/other/Fastfile'
|
16
16
|
```
|
17
17
|
|
18
|
+
For _fastlane_ plugins, check out the [available plugins](https://docs.fastlane.tools/plugins/available-plugins) page.
|
19
|
+
|
18
20
|
<%- @categories.each do |category, actions| -%>
|
19
21
|
- [<%= category %>](#<%= category.gsub(" ", "-").downcase %>)
|
20
22
|
<%- end -%>
|
@@ -40,7 +40,6 @@ module Fastlane
|
|
40
40
|
pbxproj_path = pbxproj_pathname.relative_path_from(repo_pathname).to_s
|
41
41
|
|
42
42
|
# find the info_plist files
|
43
|
-
# rubocop:disable Style/MultilineBlockChain
|
44
43
|
project = Xcodeproj::Project.open(xcodeproj_path)
|
45
44
|
info_plist_files = project.objects.select do |object|
|
46
45
|
object.isa == 'XCBuildConfiguration'
|
@@ -53,7 +52,6 @@ module Fastlane
|
|
53
52
|
end.uniq.map do |info_plist_path|
|
54
53
|
Pathname.new(File.expand_path(File.join(xcodeproj_path, '..', info_plist_path))).relative_path_from(repo_pathname).to_s
|
55
54
|
end
|
56
|
-
# rubocop:enable Style/MultilineBlockChain
|
57
55
|
|
58
56
|
# Removes .plist files that matched the given expression in the 'ignore' parameter
|
59
57
|
ignore_expression = params[:ignore]
|
@@ -50,7 +50,6 @@ module Fastlane
|
|
50
50
|
pbxproj_path = pbxproj_pathname.relative_path_from(repo_pathname).to_s
|
51
51
|
|
52
52
|
# find the info_plist files
|
53
|
-
# rubocop:disable Style/MultilineBlockChain
|
54
53
|
project = Xcodeproj::Project.open(xcodeproj_path)
|
55
54
|
info_plist_files = project.objects.select do |object|
|
56
55
|
object.isa == 'XCBuildConfiguration'
|
@@ -63,7 +62,6 @@ module Fastlane
|
|
63
62
|
end.uniq.map do |info_plist_path|
|
64
63
|
Pathname.new(File.expand_path(File.join(xcodeproj_path, '..', info_plist_path))).relative_path_from(repo_pathname).to_s
|
65
64
|
end
|
66
|
-
# rubocop:enable Style/MultilineBlockChain
|
67
65
|
|
68
66
|
# create our list of files that we expect to have changed, they should all be relative to the project root, which should be equal to the hg workdir root
|
69
67
|
expected_changed_files = []
|
@@ -45,6 +45,11 @@ Style/VariableNumber:
|
|
45
45
|
Style/MethodMissing:
|
46
46
|
Enabled: false
|
47
47
|
|
48
|
+
# This rule isn't useful, lots of discussion happening around it also
|
49
|
+
# e.g. https://github.com/bbatsov/rubocop/issues/2338
|
50
|
+
MultilineBlockChain:
|
51
|
+
Enabled: false
|
52
|
+
|
48
53
|
#
|
49
54
|
# File.chmod(0777, f)
|
50
55
|
#
|
data/gym/README.md
CHANGED
@@ -182,7 +182,7 @@ export_options(
|
|
182
182
|
method: "app-store",
|
183
183
|
provisioningProfiles: {
|
184
184
|
"com.example.bundleid": "Provisioning Profile Name",
|
185
|
-
"com.example.bundleid2": "Provisioning Profile Name 2"
|
185
|
+
"com.example.bundleid2": "Provisioning Profile Name 2"
|
186
186
|
}
|
187
187
|
)
|
188
188
|
```
|
@@ -58,7 +58,6 @@ module Gym
|
|
58
58
|
|
59
59
|
# Since Xcode 9 you need to provide the explicit mapping of what provisioning profile to use for
|
60
60
|
# each target of your app
|
61
|
-
# rubocop:disable Style/MultilineBlockChain
|
62
61
|
def self.detect_selected_provisioning_profiles
|
63
62
|
if Gym.config[:export_options] && Gym.config[:export_options].kind_of?(Hash) && Gym.config[:export_options][:provisioningProfiles]
|
64
63
|
return
|
@@ -135,7 +134,6 @@ module Gym
|
|
135
134
|
UI.verbose(ex.backtrace.join("\n"))
|
136
135
|
end
|
137
136
|
end
|
138
|
-
# rubocop:enable Style/MultilineBlockChain
|
139
137
|
|
140
138
|
def self.detect_scheme
|
141
139
|
Gym.project.select_scheme
|
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.50.0.beta.
|
4
|
+
version: 2.50.0.beta.20170729010003
|
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-07-
|
18
|
+
date: 2017-07-29 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|