fastlane 2.15.0 → 2.15.1
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/deliver/lib/deliver/runner.rb +2 -2
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/assets/.DS_Store +0 -0
- data/fastlane/lib/assets/Actions.md.erb +1 -1
- data/fastlane/lib/fastlane/actions/hockey.rb +1 -1
- data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +0 -11
- data/fastlane/lib/fastlane/version.rb +1 -1
- metadata +4 -3
- data/fastlane/lib/assets/AvailablePlugins.md.erb +0 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67082492c283f867c104bc6ad29ea0f1ba7a6afe
|
|
4
|
+
data.tar.gz: 6eb9bbddf03935457ecee161e21ac44d01bc35bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df84e9735cebeddb9d535def5d08ba6b2c91071aed6b4c7671b2af1ac8673ba6783c6ef3d41eb89368b981d9ae58a08ce7781637d27472d2b2272f4471fe500b
|
|
7
|
+
data.tar.gz: 0208bc36c54706c2fdb62ffad1095f54586301962110f953912669972b7996824e6969a2c0affeff861696958762550c5dde8dcc61c076a7cd5a202702ef4cf0
|
|
@@ -73,10 +73,10 @@ module Deliver
|
|
|
73
73
|
return unless options[:metadata_path]
|
|
74
74
|
|
|
75
75
|
default_app_icon_path = Dir[File.join(options[:metadata_path], "app_icon.{png,jpg}")].first
|
|
76
|
-
options[:app_icon] ||= default_app_icon_path if File.exist?(default_app_icon_path)
|
|
76
|
+
options[:app_icon] ||= default_app_icon_path if default_app_icon_path && File.exist?(default_app_icon_path)
|
|
77
77
|
|
|
78
78
|
default_watch_icon_path = Dir[File.join(options[:metadata_path], "watch_icon.{png,jpg}")].first
|
|
79
|
-
options[:
|
|
79
|
+
options[:apple_watch_app_icon] ||= default_watch_icon_path if default_watch_icon_path && File.exist?(default_watch_icon_path)
|
|
80
80
|
end
|
|
81
81
|
|
|
82
82
|
# Upload the binary to iTunes Connect
|
|
Binary file
|
|
Binary file
|
|
@@ -30,17 +30,6 @@ module Fastlane
|
|
|
30
30
|
|
|
31
31
|
return plugins
|
|
32
32
|
end
|
|
33
|
-
|
|
34
|
-
def self.update_md_file!(output_path: "docs/AvailablePlugins.md")
|
|
35
|
-
@plugins = fetch_gems
|
|
36
|
-
|
|
37
|
-
template_path = File.join(Fastlane::ROOT, "lib/assets/AvailablePlugins.md.erb")
|
|
38
|
-
md = ERB.new(File.read(template_path), nil, '<>').result(binding) # http://www.rrn.dk/rubys-erb-templating-system
|
|
39
|
-
|
|
40
|
-
puts md
|
|
41
|
-
File.write(output_path, md)
|
|
42
|
-
FastlaneCore::UI.success("Successfully written plugin file to '#{output_path}'")
|
|
43
|
-
end
|
|
44
33
|
end
|
|
45
34
|
|
|
46
35
|
class FastlanePlugin
|
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.15.
|
|
4
|
+
version: 2.15.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -14,7 +14,7 @@ authors:
|
|
|
14
14
|
autorequire:
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
|
-
date: 2017-02-
|
|
17
|
+
date: 2017-02-14 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: slack-notifier
|
|
@@ -753,10 +753,11 @@ files:
|
|
|
753
753
|
- deliver/lib/deliver/upload_price_tier.rb
|
|
754
754
|
- deliver/lib/deliver/upload_screenshots.rb
|
|
755
755
|
- fastlane/README.md
|
|
756
|
+
- fastlane/lib/.DS_Store
|
|
757
|
+
- fastlane/lib/assets/.DS_Store
|
|
756
758
|
- fastlane/lib/assets/Actions.md.erb
|
|
757
759
|
- fastlane/lib/assets/AppfileTemplate
|
|
758
760
|
- fastlane/lib/assets/AppfileTemplateAndroid
|
|
759
|
-
- fastlane/lib/assets/AvailablePlugins.md.erb
|
|
760
761
|
- fastlane/lib/assets/DefaultFastfileTemplate
|
|
761
762
|
- fastlane/lib/assets/FastfileTemplateAndroid
|
|
762
763
|
- fastlane/lib/assets/completions/completion.bash
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
### Available Plugins
|
|
2
|
-
|
|
3
|
-
To get an up to date list of all available plugins run
|
|
4
|
-
|
|
5
|
-
```no-highlight
|
|
6
|
-
fastlane search_plugins
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
To search for a specific plugin
|
|
10
|
-
|
|
11
|
-
```no-highlight
|
|
12
|
-
fastlane search_plugins [search_query]
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
You can find more information about how to start using plugins in [Plugins.md](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md).
|
|
16
|
-
|
|
17
|
-
#### List of plugins
|
|
18
|
-
|
|
19
|
-
| Plugin Name | Description | Downloads
|
|
20
|
-
--------------|-------------|----------|----------
|
|
21
|
-
<% @plugins.each do |current| %>
|
|
22
|
-
<%= current.linked_title %> | <%= current.info %> | <%= current.downloads %>
|
|
23
|
-
|
|
24
|
-
<% end %>
|