fastlane 2.15.1 → 2.16.0.beta.20170214010051
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/deliver/lib/deliver/runner.rb +2 -2
- data/fastlane/lib/assets/AvailablePlugins.md.erb +24 -0
- data/fastlane/lib/fastlane/actions/hockey.rb +1 -1
- data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +11 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- metadata +16 -18
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/assets/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f24515c3bd883644969e307a7ccfa72e2fe1145
|
4
|
+
data.tar.gz: 8e4fc0039ada71e98a7c50fe627cbb84e4e538ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3383566d267f96f39899123896ed28bb1443f48de579f874edeee68f46a702556eb8065dfb493e7a7c49387a32850a496600099991a737fb9037ddcbbb0b2458
|
7
|
+
data.tar.gz: 47318893ab5b372175b3f5a935b5fe8a00545a5ccd87a8e6012d497de1a7d65eb0bc776ace47c9bca2ec3628d3884c726586ef4922226cce9848b2a94b98de31
|
@@ -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
|
76
|
+
options[:app_icon] ||= default_app_icon_path if 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[:app_icon] ||= default_watch_icon_path if File.exist?(default_watch_icon_path)
|
80
80
|
end
|
81
81
|
|
82
82
|
# Upload the binary to iTunes Connect
|
@@ -0,0 +1,24 @@
|
|
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 %>
|
@@ -30,6 +30,17 @@ 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
|
33
44
|
end
|
34
45
|
|
35
46
|
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.
|
4
|
+
version: 2.16.0.beta.20170214010051
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -753,11 +753,10 @@ 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
|
758
756
|
- fastlane/lib/assets/Actions.md.erb
|
759
757
|
- fastlane/lib/assets/AppfileTemplate
|
760
758
|
- fastlane/lib/assets/AppfileTemplateAndroid
|
759
|
+
- fastlane/lib/assets/AvailablePlugins.md.erb
|
761
760
|
- fastlane/lib/assets/DefaultFastfileTemplate
|
762
761
|
- fastlane/lib/assets/FastfileTemplateAndroid
|
763
762
|
- fastlane/lib/assets/completions/completion.bash
|
@@ -1296,23 +1295,23 @@ metadata: {}
|
|
1296
1295
|
post_install_message:
|
1297
1296
|
rdoc_options: []
|
1298
1297
|
require_paths:
|
1299
|
-
-
|
1298
|
+
- pilot/lib
|
1299
|
+
- pem/lib
|
1300
|
+
- spaceship/lib
|
1300
1301
|
- credentials_manager/lib
|
1301
|
-
-
|
1302
|
+
- scan/lib
|
1302
1303
|
- fastlane/lib
|
1303
|
-
- fastlane_core/lib
|
1304
|
-
- frameit/lib
|
1305
1304
|
- gym/lib
|
1306
|
-
- match/lib
|
1307
|
-
- pem/lib
|
1308
|
-
- pilot/lib
|
1309
|
-
- produce/lib
|
1310
|
-
- scan/lib
|
1311
1305
|
- screengrab/lib
|
1312
1306
|
- sigh/lib
|
1313
|
-
-
|
1314
|
-
-
|
1307
|
+
- frameit/lib
|
1308
|
+
- produce/lib
|
1309
|
+
- match/lib
|
1310
|
+
- cert/lib
|
1311
|
+
- deliver/lib
|
1312
|
+
- fastlane_core/lib
|
1315
1313
|
- supply/lib
|
1314
|
+
- snapshot/lib
|
1316
1315
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1317
1316
|
requirements:
|
1318
1317
|
- - ">="
|
@@ -1320,15 +1319,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1320
1319
|
version: 2.0.0
|
1321
1320
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1322
1321
|
requirements:
|
1323
|
-
- - "
|
1322
|
+
- - ">"
|
1324
1323
|
- !ruby/object:Gem::Version
|
1325
|
-
version:
|
1324
|
+
version: 1.3.1
|
1326
1325
|
requirements: []
|
1327
1326
|
rubyforge_project:
|
1328
|
-
rubygems_version: 2.5.
|
1327
|
+
rubygems_version: 2.4.5.2
|
1329
1328
|
signing_key:
|
1330
1329
|
specification_version: 4
|
1331
1330
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1332
1331
|
Android apps
|
1333
1332
|
test_files: []
|
1334
|
-
has_rdoc:
|
data/fastlane/lib/.DS_Store
DELETED
Binary file
|
Binary file
|