deliver 1.3.2 → 1.3.3

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: b24553866dd9e0e70c899ed58b55c2c9c887020b
4
- data.tar.gz: f40581ff810352440b6571a4c3bf4266ef2ef768
3
+ metadata.gz: 09650f38526acfd3c73908a6e3e0bf762b615a1e
4
+ data.tar.gz: 721b6fa26b9edefdf9c03c76027c45ce8a3eeac8
5
5
  SHA512:
6
- metadata.gz: 0dafd4e80f7db053085f3b300dbd9ebf42d4a282775456d2768acd3534462d89745559f92a9728b1ff205fb0d77f23e8c3a5f81d9f05aa4ba9502ca0413e5737
7
- data.tar.gz: 179a492960611b0db9755cd7ae7eab0da7df5a361a0121c84e9829e48b9035afc861396546ef82c20aa75795caa005dae3a5604e3a04246e3f578e6f4c46d03a
6
+ metadata.gz: 85a6d175c9d4b08f235f74d7b533d61a4bc130e0e580e3ec5c32f1cf373d7f42054526e75ffabb07f56636d37ceb0b351611ce4b3acfb22483488611aed07e5a
7
+ data.tar.gz: 27a57b3109e819c23cb7e1e4c96f2cf95c7c35fcd6e009eba88dd39314cf9e11e7da75ec5e0db380230fe8127564e8047c3ee27c947f33d3359a6a16b4bd30c8
data/README.md CHANGED
@@ -11,18 +11,18 @@
11
11
  <a href="https://github.com/KrauseFx/frameit">frameit</a> &bull;
12
12
  <a href="https://github.com/KrauseFx/PEM">PEM</a> &bull;
13
13
  <a href="https://github.com/KrauseFx/sigh">sigh</a> &bull;
14
- <a href="https://github.com/KrauseFx/produce">produce</a> &bull;
15
- <a href="https://github.com/KrauseFx/cert">cert</a> &bull;
16
- <a href="https://github.com/KrauseFx/codes">codes</a> &bull;
14
+ <a href="https://github.com/KrauseFx/produce">produce</a> &bull;
15
+ <a href="https://github.com/KrauseFx/cert">cert</a> &bull;
17
16
  <a href="https://github.com/fastlane/spaceship">spaceship</a> &bull;
18
17
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
19
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
20
- <a href="https://github.com/fastlane/gym">gym</a>
19
+ <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
+ <a href="https://github.com/fastlane/scan">scan</a>
21
21
  </p>
22
22
  -------
23
23
 
24
24
  <p align="center">
25
- <img src="assets/deliver.png">
25
+ <img src="assets/deliver.png" height="110">
26
26
  </p>
27
27
 
28
28
  deliver
@@ -155,11 +155,11 @@ Before actually uploading anything to iTunes, ```deliver``` will generate a HTML
155
155
  - [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
156
156
  - [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
157
157
  - [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
158
- - [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
159
158
  - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
160
159
  - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
161
160
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
162
161
  - [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
162
+ - [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
163
163
 
164
164
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
165
165
 
@@ -6,7 +6,7 @@ module Deliver
6
6
  self.options = options
7
7
  login
8
8
  Deliver::DetectValues.new.run!(self.options)
9
- FastlaneCore::PrintTable.print_values(config: options, hide_keys: [:app], title: "Summary")
9
+ FastlaneCore::PrintTable.print_values(config: options, hide_keys: [:app], title: "deliver #{Deliver::VERSION} Summary")
10
10
  end
11
11
 
12
12
  def login
@@ -13,7 +13,7 @@ module Deliver
13
13
  # Non localized app details values
14
14
  NON_LOCALISED_APP_VALUES = [:primary_category, :secondary_category,
15
15
  :primary_first_sub_category, :primary_second_sub_category,
16
- :secondary_first_sub_category, :secondary_first_sub_category
16
+ :secondary_first_sub_category, :secondary_second_sub_category
17
17
  ]
18
18
 
19
19
  # Make sure to call `load_from_filesystem` before calling upload
@@ -64,6 +64,10 @@ module Deliver
64
64
  next
65
65
  end
66
66
 
67
+ if !prefer_framed && path.downcase.include?("_framed.#{extensions}")
68
+ next
69
+ end
70
+
67
71
  screenshots << AppScreenshot.new(path, language)
68
72
  end
69
73
  end
@@ -1,4 +1,4 @@
1
1
  module Deliver
2
- VERSION = "1.3.2"
2
+ VERSION = "1.3.3"
3
3
  DESCRIPTION = 'Upload screenshots, metadata and your app to the App Store using a single command'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deliver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-14 00:00:00.000000000 Z
11
+ date: 2015-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
268
268
  version: '0'
269
269
  requirements: []
270
270
  rubyforge_project:
271
- rubygems_version: 2.4.5
271
+ rubygems_version: 2.4.8
272
272
  signing_key:
273
273
  specification_version: 4
274
274
  summary: Upload screenshots, metadata and your app to the App Store using a single