fastlane 2.73.0.beta.20180105010003 → 2.73.0

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: 93b6f97931586bdd362b89fcd9b4dfc2fdb8a331
4
- data.tar.gz: 42a14189eb1130e55a9770b203825f4988f7a0a5
3
+ metadata.gz: a60f5fe37ddce7931d25079c7d083ebe840b42a6
4
+ data.tar.gz: b6438be238ba86f59e014453052abb76423e7502
5
5
  SHA512:
6
- metadata.gz: acdd97d5ba161e633f1f063f8a4312f28fcfe197a1c15a0752efc68d840281cc08aeb68fe329cdf22e957b9d04c5dcae7b4d63c293b8ea453b41fe3bf11776f5
7
- data.tar.gz: 171c66ac8c7411f327992457a8ced8956acaae710043aab211026b1764447f1ceaf4e1a5e1cf66be834ad4d7c432b4d3bc0200d15f6edd231ecdbc288c83e2ba
6
+ metadata.gz: 6fe03b54f9eb4ebe997e9195326e325d7cb73ee08ed68b53ef3aa10c290338238cd388de7827c458aef55657eb020edccff47091fdcd2810745b6d4b103e0301
7
+ data.tar.gz: 7bbe34f2689363834606058664d2584036a389e139035d004f9c0b9de26832859f64c892f2071727489cc189a1b21cb2dfcc1e7a013a60356e6b9441125b6425
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.73.0.beta.20180105010003'.freeze
2
+ VERSION = '2.73.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
@@ -11,4 +11,4 @@ class Deliverfile: DeliverfileProtocol {
11
11
 
12
12
 
13
13
 
14
- // Generated with fastlane 2.71.1
14
+ // Generated with fastlane 2.72.0
@@ -11,4 +11,4 @@ class Gymfile: GymfileProtocol {
11
11
 
12
12
 
13
13
 
14
- // Generated with fastlane 2.71.1
14
+ // Generated with fastlane 2.72.0
@@ -11,4 +11,4 @@ class Matchfile: MatchfileProtocol {
11
11
 
12
12
 
13
13
 
14
- // Generated with fastlane 2.71.1
14
+ // Generated with fastlane 2.72.0
@@ -11,4 +11,4 @@ class Precheckfile: PrecheckfileProtocol {
11
11
 
12
12
 
13
13
 
14
- // Generated with fastlane 2.71.1
14
+ // Generated with fastlane 2.72.0
@@ -11,4 +11,4 @@ class Scanfile: ScanfileProtocol {
11
11
 
12
12
 
13
13
 
14
- // Generated with fastlane 2.71.1
14
+ // Generated with fastlane 2.72.0
@@ -11,4 +11,4 @@ class Screengrabfile: ScreengrabfileProtocol {
11
11
 
12
12
 
13
13
 
14
- // Generated with fastlane 2.71.1
14
+ // Generated with fastlane 2.72.0
@@ -11,4 +11,4 @@ class Snapshotfile: SnapshotfileProtocol {
11
11
 
12
12
 
13
13
 
14
- // Generated with fastlane 2.71.1
14
+ // Generated with fastlane 2.72.0
@@ -330,11 +330,12 @@ module Spaceship
330
330
 
331
331
  def get_ratings(app_id, platform, version_id = '', storefront = '')
332
332
  # if storefront or version_id is empty api fails
333
- rating_url = "ra/apps/#{app_id}/platforms/#{platform}/reviews/summary?"
334
- rating_url << "storefront=#{storefront}" unless storefront.empty?
335
- rating_url << "version_id=#{version_id}" unless version_id.empty?
333
+ rating_url = "ra/apps/#{app_id}/platforms/#{platform}/reviews/summary"
334
+ params = {}
335
+ params['storefront'] = storefront unless storefront.empty?
336
+ params['version_id'] = version_id unless version_id.empty?
336
337
 
337
- r = request(:get, rating_url)
338
+ r = request(:get, rating_url, params)
338
339
  parse_response(r, 'data')
339
340
  end
340
341
 
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.73.0.beta.20180105010003
4
+ version: 2.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -855,6 +855,8 @@ files:
855
855
  - deliver/lib/deliver/upload_price_tier.rb
856
856
  - deliver/lib/deliver/upload_screenshots.rb
857
857
  - fastlane/README.md
858
+ - fastlane/lib/.DS_Store
859
+ - fastlane/lib/assets/.DS_Store
858
860
  - fastlane/lib/assets/ActionDetails.md.erb
859
861
  - fastlane/lib/assets/Actions.md.erb
860
862
  - fastlane/lib/assets/AppfileTemplate
@@ -874,8 +876,10 @@ files:
874
876
  - fastlane/lib/assets/s3_plist_template.erb
875
877
  - fastlane/lib/assets/s3_version_template.erb
876
878
  - fastlane/lib/fastlane.rb
879
+ - fastlane/lib/fastlane/.DS_Store
877
880
  - fastlane/lib/fastlane/action.rb
878
881
  - fastlane/lib/fastlane/action_collector.rb
882
+ - fastlane/lib/fastlane/actions/.DS_Store
879
883
  - fastlane/lib/fastlane/actions/README.md
880
884
  - fastlane/lib/fastlane/actions/actions_helper.rb
881
885
  - fastlane/lib/fastlane/actions/adb.rb
@@ -928,6 +932,7 @@ files:
928
932
  - fastlane/lib/fastlane/actions/deliver.rb
929
933
  - fastlane/lib/fastlane/actions/deploygate.rb
930
934
  - fastlane/lib/fastlane/actions/device_grid/README.md
935
+ - fastlane/lib/fastlane/actions/docs/.DS_Store
931
936
  - fastlane/lib/fastlane/actions/docs/cert.md
932
937
  - fastlane/lib/fastlane/actions/docs/deliver.md
933
938
  - fastlane/lib/fastlane/actions/docs/frameit.md
@@ -1162,6 +1167,7 @@ files:
1162
1167
  - fastlane/lib/fastlane/server/command_executor.rb
1163
1168
  - fastlane/lib/fastlane/server/socket_server.rb
1164
1169
  - fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
1170
+ - fastlane/lib/fastlane/setup/.DS_Store
1165
1171
  - fastlane/lib/fastlane/setup/crashlytics_beta.rb
1166
1172
  - fastlane/lib/fastlane/setup/crashlytics_beta_command_line_handler.rb
1167
1173
  - fastlane/lib/fastlane/setup/crashlytics_beta_info.rb
@@ -1553,24 +1559,24 @@ metadata:
1553
1559
  post_install_message:
1554
1560
  rdoc_options: []
1555
1561
  require_paths:
1556
- - supply/lib
1557
- - screengrab/lib
1562
+ - cert/lib
1563
+ - credentials_manager/lib
1564
+ - deliver/lib
1565
+ - fastlane/lib
1566
+ - fastlane_core/lib
1567
+ - frameit/lib
1568
+ - gym/lib
1558
1569
  - match/lib
1570
+ - pem/lib
1571
+ - pilot/lib
1559
1572
  - precheck/lib
1560
- - sigh/lib
1561
1573
  - produce/lib
1562
1574
  - scan/lib
1563
- - gym/lib
1575
+ - screengrab/lib
1576
+ - sigh/lib
1564
1577
  - snapshot/lib
1565
- - frameit/lib
1566
- - fastlane/lib
1567
- - cert/lib
1568
- - pilot/lib
1569
1578
  - spaceship/lib
1570
- - credentials_manager/lib
1571
- - deliver/lib
1572
- - fastlane_core/lib
1573
- - pem/lib
1579
+ - supply/lib
1574
1580
  required_ruby_version: !ruby/object:Gem::Requirement
1575
1581
  requirements:
1576
1582
  - - ">="
@@ -1578,12 +1584,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
1578
1584
  version: 2.0.0
1579
1585
  required_rubygems_version: !ruby/object:Gem::Requirement
1580
1586
  requirements:
1581
- - - ">"
1587
+ - - ">="
1582
1588
  - !ruby/object:Gem::Version
1583
- version: 1.3.1
1589
+ version: '0'
1584
1590
  requirements: []
1585
1591
  rubyforge_project:
1586
- rubygems_version: 2.4.5.1
1592
+ rubygems_version: 2.6.10
1587
1593
  signing_key:
1588
1594
  specification_version: 4
1589
1595
  summary: The easiest way to automate beta deployments and releases for your iOS and