fastlane 2.17.0 → 2.17.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23b560a627bcd40fb073d683ecdbf998d1cdaa65
|
|
4
|
+
data.tar.gz: 4b147aafd4a9af906ddb9370ddbaa4b40667434d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f72f6727141721deea0795676ab99a077dab3ba467525ba167781356d80be228c34f600000c7398827789ca595e2875254e185d3c20e57122d10da5b2608b13
|
|
7
|
+
data.tar.gz: e75b688eb48cebe457ee205ddcaf6e2b966deecbb523935c353ba93594bc18249fba8e084b382f4b00b69c968a1dc33112b0e55e19834f18718102c2f7940b61
|
|
@@ -22,7 +22,6 @@ module Frameit
|
|
|
22
22
|
program :help_formatter, :compact
|
|
23
23
|
|
|
24
24
|
global_option('--verbose') { FastlaneCore::Globals.verbose = true }
|
|
25
|
-
FastlaneCore::CommanderGenerator.new.generate(Frameit::Options.available_options)
|
|
26
25
|
|
|
27
26
|
default_command :run
|
|
28
27
|
|
|
@@ -30,6 +29,8 @@ module Frameit
|
|
|
30
29
|
c.syntax = 'fastlane frameit black'
|
|
31
30
|
c.description = "Adds a black frame around all screenshots"
|
|
32
31
|
|
|
32
|
+
FastlaneCore::CommanderGenerator.new.generate(Frameit::Options.available_options, command: c)
|
|
33
|
+
|
|
33
34
|
c.action do |args, options|
|
|
34
35
|
load_config(options)
|
|
35
36
|
Frameit::Runner.new.run('.', nil)
|
|
@@ -40,6 +41,8 @@ module Frameit
|
|
|
40
41
|
c.syntax = 'fastlane frameit silver'
|
|
41
42
|
c.description = "Adds a silver frame around all screenshots"
|
|
42
43
|
|
|
44
|
+
FastlaneCore::CommanderGenerator.new.generate(Frameit::Options.available_options, command: c)
|
|
45
|
+
|
|
43
46
|
c.action do |args, options|
|
|
44
47
|
load_config(options)
|
|
45
48
|
Frameit::Runner.new.run('.', Frameit::Color::SILVER)
|
|
@@ -50,6 +53,8 @@ module Frameit
|
|
|
50
53
|
c.syntax = 'fastlane frameit gold'
|
|
51
54
|
c.description = "Adds a gold frame around all screenshots"
|
|
52
55
|
|
|
56
|
+
FastlaneCore::CommanderGenerator.new.generate(Frameit::Options.available_options, command: c)
|
|
57
|
+
|
|
53
58
|
c.action do |args, options|
|
|
54
59
|
load_config(options)
|
|
55
60
|
Frameit::Runner.new.run('.', Frameit::Color::GOLD)
|
|
@@ -60,6 +65,8 @@ module Frameit
|
|
|
60
65
|
c.syntax = 'fastlane frameit rose_gold'
|
|
61
66
|
c.description = "Adds a rose gold frame around all screenshots"
|
|
62
67
|
|
|
68
|
+
FastlaneCore::CommanderGenerator.new.generate(Frameit::Options.available_options, command: c)
|
|
69
|
+
|
|
63
70
|
c.action do |args, options|
|
|
64
71
|
load_config(options)
|
|
65
72
|
Frameit::Runner.new.run('.', Frameit::Color::ROSE_GOLD)
|
|
@@ -174,6 +174,11 @@ module Spaceship
|
|
|
174
174
|
raise "Can't find class '#{attrs['distributionMethod']}'"
|
|
175
175
|
end
|
|
176
176
|
|
|
177
|
+
# Parse the dates
|
|
178
|
+
# rubocop:disable Style/RescueModifier
|
|
179
|
+
attrs['dateExpire'] = (Time.parse(attrs['dateExpire']) rescue attrs['dateExpire'])
|
|
180
|
+
# rubocop:enable Style/RescueModifier
|
|
181
|
+
|
|
177
182
|
klass.client = @client
|
|
178
183
|
obj = klass.new(attrs)
|
|
179
184
|
|
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.17.
|
|
4
|
+
version: 2.17.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-16 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: slack-notifier
|