fastlane 2.17.0 → 2.17.1

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: c2018da1149a04271e1861829b2c3174e3fbffa9
4
- data.tar.gz: 009843a49c26bc5e69a8741563dce459efea763c
3
+ metadata.gz: 23b560a627bcd40fb073d683ecdbf998d1cdaa65
4
+ data.tar.gz: 4b147aafd4a9af906ddb9370ddbaa4b40667434d
5
5
  SHA512:
6
- metadata.gz: 8b5fac2721f6284bf23a447e2463d9d7c5ad2a51e44e1c72441b5a6fd5ce9c468d8070881370111fbfe9e19188e62277596c0c5440383455d422df741205dc60
7
- data.tar.gz: fa94f1bc432ccd8ab9257a7478d8dfed2ce5267a04a671b3ab7b18206d0dd560a8c37de9199006a8ca6e9ef8f0ba06013d977bf506e8484fb940b5b5d4acb5ed
6
+ metadata.gz: 5f72f6727141721deea0795676ab99a077dab3ba467525ba167781356d80be228c34f600000c7398827789ca595e2875254e185d3c20e57122d10da5b2608b13
7
+ data.tar.gz: e75b688eb48cebe457ee205ddcaf6e2b966deecbb523935c353ba93594bc18249fba8e084b382f4b00b69c968a1dc33112b0e55e19834f18718102c2f7940b61
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.17.0'.freeze
2
+ VERSION = '2.17.1'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -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.0
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-15 00:00:00.000000000 Z
17
+ date: 2017-02-16 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier