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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67082492c283f867c104bc6ad29ea0f1ba7a6afe
4
- data.tar.gz: 6eb9bbddf03935457ecee161e21ac44d01bc35bb
3
+ metadata.gz: 8f24515c3bd883644969e307a7ccfa72e2fe1145
4
+ data.tar.gz: 8e4fc0039ada71e98a7c50fe627cbb84e4e538ca
5
5
  SHA512:
6
- metadata.gz: df84e9735cebeddb9d535def5d08ba6b2c91071aed6b4c7671b2af1ac8673ba6783c6ef3d41eb89368b981d9ae58a08ce7781637d27472d2b2272f4471fe500b
7
- data.tar.gz: 0208bc36c54706c2fdb62ffad1095f54586301962110f953912669972b7996824e6969a2c0affeff861696958762550c5dde8dcc61c076a7cd5a202702ef4cf0
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 default_app_icon_path && File.exist?(default_app_icon_path)
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[:apple_watch_app_icon] ||= default_watch_icon_path if default_watch_icon_path && File.exist?(default_watch_icon_path)
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 %>
@@ -354,7 +354,7 @@ module Fastlane
354
354
  api_token: "...",
355
355
  create_update: true,
356
356
  public_identifier: "....",
357
- bundle_short_version: "1.0.2",
357
+ bundle_short_version: "1.0.2,
358
358
  bundle_version: "1.0.2.145",
359
359
  ipa: "./my.msi",
360
360
  notes: "Changelog"
@@ -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
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.15.1'.freeze
2
+ VERSION = '2.16.0.beta.20170214010051'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
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.1
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
- - cert/lib
1298
+ - pilot/lib
1299
+ - pem/lib
1300
+ - spaceship/lib
1300
1301
  - credentials_manager/lib
1301
- - deliver/lib
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
- - snapshot/lib
1314
- - spaceship/lib
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: '0'
1324
+ version: 1.3.1
1326
1325
  requirements: []
1327
1326
  rubyforge_project:
1328
- rubygems_version: 2.5.1
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:
Binary file