fastlane 2.86.0.beta.20180315050105 → 2.86.0.beta.20180316050051
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7995dfeda91951931b550ea21d89b8b3180477f5
|
4
|
+
data.tar.gz: 1ed638a12b3a8995e62b43731e98c7c7e1b80420
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cc45e497269218d8f291a0f0e7f59ff4b2d545558943298d1ae130f2a81de61205bb98252ac16df1c1c52c4e6d18ad776da359fb744f617fd7185f8d32ebdf8
|
7
|
+
data.tar.gz: 0b02429495aec40e156955c7221466c2e2be252f7d3bb0adad6bf7b0c9b7e917605cc36d314862f5a0140854dd13efbc5cf7e13dc0c50c62207f4f4c92e0d73d
|
@@ -106,7 +106,7 @@ Inside of a given locale directory is a folder called `images`. Here you can sup
|
|
106
106
|
- `promoGraphic`
|
107
107
|
- `tvBanner`
|
108
108
|
|
109
|
-
|
109
|
+
You can also supply screenshots by creating directories within the `images` directory with the following names, containing PNGs or JPEGs (image names are irrelevant):
|
110
110
|
|
111
111
|
- `phoneScreenshots/`
|
112
112
|
- `sevenInchScreenshots/` (7-inch tablets)
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.86.0.beta.
|
2
|
+
VERSION = '2.86.0.beta.20180316050051'.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
|
@@ -9,7 +9,7 @@ module Spaceship
|
|
9
9
|
# "XJXGVS46MW"
|
10
10
|
attr_accessor :id
|
11
11
|
|
12
|
-
# @return (String) The name of the device
|
12
|
+
# @return (String) The name of the device, must be 50 characters or less.
|
13
13
|
# @example
|
14
14
|
# "Felix Krause's iPhone 6"
|
15
15
|
attr_accessor :name
|
@@ -148,6 +148,8 @@ module Spaceship
|
|
148
148
|
raise "You cannot create a device without a device_id (UDID) and name"
|
149
149
|
end
|
150
150
|
|
151
|
+
raise "Device name must be 50 characters or less. \"#{name}\" has a #{name.length} character length." if name.length > 50
|
152
|
+
|
151
153
|
# Find the device by UDID, raise an exception if it already exists
|
152
154
|
existing = self.find_by_udid(udid, mac: mac)
|
153
155
|
return existing if existing
|
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.86.0.beta.
|
4
|
+
version: 2.86.0.beta.20180316050051
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maksym Grebenets
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2018-03-
|
30
|
+
date: 2018-03-16 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1607,23 +1607,23 @@ post_install_message:
|
|
1607
1607
|
rdoc_options: []
|
1608
1608
|
require_paths:
|
1609
1609
|
- supply/lib
|
1610
|
-
- fastlane/lib
|
1611
1610
|
- sigh/lib
|
1612
|
-
-
|
1613
|
-
- spaceship/lib
|
1614
|
-
- precheck/lib
|
1611
|
+
- produce/lib
|
1615
1612
|
- scan/lib
|
1616
|
-
- deliver/lib
|
1617
|
-
- match/lib
|
1618
|
-
- snapshot/lib
|
1619
|
-
- pilot/lib
|
1620
|
-
- screengrab/lib
|
1621
1613
|
- cert/lib
|
1622
|
-
- produce/lib
|
1623
|
-
- credentials_manager/lib
|
1624
1614
|
- frameit/lib
|
1615
|
+
- screengrab/lib
|
1616
|
+
- precheck/lib
|
1617
|
+
- pilot/lib
|
1625
1618
|
- gym/lib
|
1619
|
+
- snapshot/lib
|
1620
|
+
- fastlane_core/lib
|
1621
|
+
- deliver/lib
|
1622
|
+
- match/lib
|
1626
1623
|
- pem/lib
|
1624
|
+
- credentials_manager/lib
|
1625
|
+
- spaceship/lib
|
1626
|
+
- fastlane/lib
|
1627
1627
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1628
1628
|
requirements:
|
1629
1629
|
- - ">="
|