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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 72b1c45ce7b73fbd00f8293d54cc026e74218820
4
- data.tar.gz: 56457d15595b635fbd0abb894e151b50bc5520ce
3
+ metadata.gz: c62c028acb169bef0349086510289e6ab5a04225
4
+ data.tar.gz: 8e0fb615e678a0d550834faebc3d9c48d96c1553
5
5
  SHA512:
6
- metadata.gz: bbc4567c1682b8162d5b67fd06ff1f7074e5cf1a1ac9b6bdfea7685419e9d9ad77ad85de4edca4745197aefccc61b23285e06136b4d39aae2c34d0a5f2f6710f
7
- data.tar.gz: 07a134ecc3e5c8363f1f4f2ce22013e36af2f336e37cafe8bf58679b0a1764e940c020de134d4f7af388db481e1fefc0b354ea2e4945b2e0637bb5e86b2e5ca0
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
  #
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.50.0.beta.20170728010002'.freeze
2
+ VERSION = '2.50.0.beta.20170729010003'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  end
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.20170728010002
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-28 00:00:00.000000000 Z
18
+ date: 2017-07-29 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier