fastlane 2.90.0.beta.20180412050111 → 2.90.0

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: 1a27d8f4c8be5a1f62c90abf264a3c968ad407f0
4
- data.tar.gz: 6a4b5ac89c18173ecae4cae8b8af3a8305ed1a78
3
+ metadata.gz: 3f4a3f596d3950576f97bf321b9b3e4524e17977
4
+ data.tar.gz: f2cb5c5dba5aaa72553db9357b338e7b185cfa50
5
5
  SHA512:
6
- metadata.gz: 39fc643254732888b9671b2ed165ba5a223c7d7b481c574e1b3682491c3b770f06965bf86be864f203238449e8854914872c8c138ffe1b558c2668651946e1ed
7
- data.tar.gz: eae9ea2721210ef95ed7ee91821b67d931d84a8da2f1e328dcf3dd04e7cb6bd8130a2c628cd56d6348c049b112c4052a7edca0abb11c0d906af43bc28c9b7ce8
6
+ metadata.gz: d5dadd0d51f67073935de555f4f59b51c47c141b2c6d987d5bf15b90ac1e8e3217c730d6fc1ce4c9625f0458801df0989f724fd7cf4eb2c2453f98eedccbe2b5
7
+ data.tar.gz: 594c590142b76bd52c24a6d7c84ad2bb4bc63432244022a8638eda9ba0df6247f3c49a05b7e36c6cfe6d71c001f111ae31073e2a00a060524d7c8fa94d5a0416
@@ -17,12 +17,12 @@ To modify it, go to its source at https://github.com/fastlane/fastlane/blob/mast
17
17
  <%= "> #{action.details.gsub("\n\n", "\n")}" unless action.details.to_s.empty? %>
18
18
  <% end %>
19
19
 
20
- <%= action.action_name %> ||
21
- ---|---
20
+ <%= action.action_name %> |
21
+ -----|----
22
22
  Supported platforms | <%= [:ios, :android, :mac].find_all { |a| action.is_supported?(a) }.join(", ") %>
23
23
  Author | @<%= Array(action.author || action.authors).join(", @") %>
24
24
  <%- unless action.return_value.to_s.empty? -%>
25
- Returns | <%= action.return_value.gsub("\n", "<br>") %>
25
+ Returns | <%= action.return_value %>
26
26
  <%- end -%>
27
27
 
28
28
  <% if (action.example_code || []).count > 0 %>
@@ -39,7 +39,7 @@ module Fastlane
39
39
  FastlaneCore::ConfigItem.new(key: :adb_path,
40
40
  env_name: "FL_ADB_PATH",
41
41
  optional: true,
42
- description: "The path to your `adb` binary (can be left blank if the ANDROID_SDK_ROOT environment variable is set)",
42
+ description: "The path to your `adb` binary",
43
43
  is_string: true,
44
44
  default_value: "adb")
45
45
  ]
@@ -28,7 +28,7 @@ module Fastlane
28
28
  [
29
29
  FastlaneCore::ConfigItem.new(key: :adb_path,
30
30
  env_name: "FL_ADB_PATH",
31
- description: "The path to your `adb` binary (can be left blank if the ANDROID_SDK_ROOT environment variable is set)",
31
+ description: "The path to your `adb` binary",
32
32
  is_string: true,
33
33
  optional: true,
34
34
  default_value: "adb")
@@ -38,8 +38,8 @@ module Fastlane
38
38
  def self.example_code
39
39
  [
40
40
  'check_app_store_metadata(
41
- negative_apple_sentiment: [level: :skip], # Set to skip to not run the `negative_apple_sentiment` rule
42
- curse_words: [level: :warn] # Set to warn to only warn on curse word check failures
41
+ negative_apple_sentiment(level: :skip), # Set to skip to not run the `negative_apple_sentiment` rule
42
+ curse_words(level: :warn) # Set to warn to only warn on curse word check failures
43
43
  )',
44
44
  'precheck # alias for "check_app_store_metadata"'
45
45
  ]
@@ -77,7 +77,7 @@ module Fastlane
77
77
  'git_add',
78
78
  'git_add(path: "./version.txt")',
79
79
  'git_add(path: ["./version.txt", "./changelog.txt"])',
80
- 'git_add(path: "./Frameworks/*", shell_escape: false)',
80
+ 'git_add(path: "./Frameworks/*", shell_escape: false',
81
81
  'git_add(path: ["*.h", "*.m"], shell_escape: false)',
82
82
  'git_add(path: "./Frameworks/*", shell_escape: false)',
83
83
  'git_add(path: "*.txt", shell_escape: false)'
@@ -139,7 +139,7 @@ module Fastlane
139
139
  [
140
140
  'swiftlint(
141
141
  mode: :lint, # SwiftLint mode: :lint (default) or :autocorrect
142
- path: "/path/to/lint", # Specify path to lint (optional)
142
+ path: "/path/to/lint" # Specify path to lint (optional)
143
143
  output_file: "swiftlint.result.json", # The path of the output file (optional)
144
144
  config_file: ".swiftlint-ci.yml", # The path of the configuration file (optional)
145
145
  files: [ # List of files to process (optional)
@@ -16,10 +16,6 @@ module Fastlane
16
16
  attr_accessor :devices
17
17
 
18
18
  def initialize(adb_path: nil)
19
- android_home = ENV['ANDROID_HOME'] || ENV['ANDROID_SDK_ROOT'] || ENV['ANDROID_SDK']
20
- if (adb_path.nil? || adb_path == "adb") && android_home
21
- adb_path = Pathname.new(android_home).join("platform-tools/adb").to_s
22
- end
23
19
  self.adb_path = adb_path
24
20
  end
25
21
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.90.0.beta.20180412050111'.freeze
2
+ VERSION = '2.90.0'.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
  RUBOCOP_REQUIREMENT = '0.49.1'.freeze
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.90.0.beta.20180412050111
4
+ version: 2.90.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manu Wallner
@@ -1622,24 +1622,24 @@ metadata:
1622
1622
  post_install_message:
1623
1623
  rdoc_options: []
1624
1624
  require_paths:
1625
- - match/lib
1626
- - fastlane_core/lib
1627
- - screengrab/lib
1628
- - deliver/lib
1625
+ - credentials_manager/lib
1629
1626
  - pem/lib
1630
- - spaceship/lib
1631
- - produce/lib
1632
- - sigh/lib
1633
1627
  - snapshot/lib
1634
- - cert/lib
1635
- - supply/lib
1636
1628
  - frameit/lib
1637
- - pilot/lib
1638
- - credentials_manager/lib
1629
+ - match/lib
1630
+ - fastlane_core/lib
1631
+ - deliver/lib
1639
1632
  - scan/lib
1633
+ - supply/lib
1634
+ - cert/lib
1640
1635
  - fastlane/lib
1641
- - precheck/lib
1636
+ - spaceship/lib
1637
+ - pilot/lib
1642
1638
  - gym/lib
1639
+ - precheck/lib
1640
+ - screengrab/lib
1641
+ - sigh/lib
1642
+ - produce/lib
1643
1643
  required_ruby_version: !ruby/object:Gem::Requirement
1644
1644
  requirements:
1645
1645
  - - ">="
@@ -1647,12 +1647,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
1647
1647
  version: 2.0.0
1648
1648
  required_rubygems_version: !ruby/object:Gem::Requirement
1649
1649
  requirements:
1650
- - - ">"
1650
+ - - ">="
1651
1651
  - !ruby/object:Gem::Version
1652
- version: 1.3.1
1652
+ version: '0'
1653
1653
  requirements: []
1654
1654
  rubyforge_project:
1655
- rubygems_version: 2.5.2.1
1655
+ rubygems_version: 2.4.5.5
1656
1656
  signing_key:
1657
1657
  specification_version: 4
1658
1658
  summary: The easiest way to automate beta deployments and releases for your iOS and