fastlane 2.58.0.beta.20170920010003 → 2.58.0

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: a1aee2a4ce2c2f291827675b8cfbc2509337817f
4
- data.tar.gz: 2c0a3895848af582417fcbf8581ea28cd6667b3b
3
+ metadata.gz: 7aa08a156cdd449c04d9f986286cb8275d31c883
4
+ data.tar.gz: db9d3d7ac5b7f427c6e39f128964cd68f5d6bcc2
5
5
  SHA512:
6
- metadata.gz: 7246060005b8de3927014bc6237032ae0e816c5a3dcc378f59a4235e3560ded56bf101e5cdee8e9034a419cab0f7800d697ee8ff0d561f33241fa81435c24431
7
- data.tar.gz: 964fc6bfcdd559f16578c22c484ead850d588dfff08a3ec15183477e411ece96b3fb169f305e767e00779889141bee6f7278108360db12525fdbdb9f0f3f2d31
6
+ metadata.gz: 0f5a347b494e0b4f1c18b9d98bb6e7e4f81e187da63e22341c1ce6b65ce2e5c0b04544c0110ce497fe44efb9ed56a3d18ae07fa2c03a3b50112b5ec1889b307e
7
+ data.tar.gz: 99794deecc406517234503daeb301fd49be30086e0763ebb60a734e165ae5100b1083c7971e33a2e6efcc4691841c92a9a0daca7fda880ee9c32580eb2656643
Binary file
@@ -16,6 +16,7 @@ _fastlane_complete() {
16
16
 
17
17
  # parse 'beta' out of 'lane :beta do', etc
18
18
  completions=$(grep "^\s*lane \:" $file | awk -F ':' '{print $2}' | awk -F ' ' '{print $1}')
19
+ completions="$completions update_fastlane"
19
20
 
20
21
  COMPREPLY=( $(compgen -W "$completions" -- "$word") )
21
22
  }
@@ -34,4 +34,6 @@ for line in $commands
34
34
  end
35
35
  end
36
36
 
37
+ set commands_string "$commands_string update_fastlane"
38
+
37
39
  complete -c fastlane -n '__fish_fastlane_needs_subcommand' -a (string trim $commands_string) -f
@@ -15,6 +15,7 @@ _fastlane_complete() {
15
15
 
16
16
  # parse 'beta' out of 'lane :beta do', etc
17
17
  completions=`cat $file | grep "^\s*lane \:" | awk -F ':' '{print $2}' | awk -F ' ' '{print $1}'`
18
+ completions="$completions update_fastlane"
18
19
 
19
20
  reply=( "${(ps:\n:)completions}" )
20
21
  }
@@ -60,6 +60,8 @@ module Fastlane
60
60
  v.release_notes.languages.each do |lang|
61
61
  v.release_notes[lang] = changelog
62
62
  end
63
+
64
+ UI.message("Found and updated changelog for the following languages: #{v.release_notes.languages.join(', ')}")
63
65
  UI.message("Uploading changes to iTunes Connect...")
64
66
  v.save!
65
67
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.58.0.beta.20170920010003'.freeze
2
+ VERSION = '2.58.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
  end
@@ -34,8 +34,8 @@ module FastlaneCore
34
34
  private
35
35
 
36
36
  def copy_ipa(ipa_path)
37
- ipa_file_name = "#{File.basename(ipa_path, '.ipa')}_#{Digest::SHA256.file(ipa_path).hexdigest}.ipa"
38
- resulting_path = File.join(self.package_path, ipa_file_name)
37
+ ipa_file_name = Digest::MD5.hexdigest(ipa_path)
38
+ resulting_path = File.join(self.package_path, "#{ipa_file_name}.ipa")
39
39
  FileUtils.cp(ipa_path, resulting_path)
40
40
 
41
41
  return resulting_path
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.58.0.beta.20170920010003
4
+ version: 2.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -828,6 +828,7 @@ files:
828
828
  - deliver/lib/deliver/upload_price_tier.rb
829
829
  - deliver/lib/deliver/upload_screenshots.rb
830
830
  - fastlane/README.md
831
+ - fastlane/lib/.DS_Store
831
832
  - fastlane/lib/assets/ActionDetails.md.erb
832
833
  - fastlane/lib/assets/Actions.md.erb
833
834
  - fastlane/lib/assets/AppfileTemplate
@@ -845,8 +846,10 @@ files:
845
846
  - fastlane/lib/assets/s3_plist_template.erb
846
847
  - fastlane/lib/assets/s3_version_template.erb
847
848
  - fastlane/lib/fastlane.rb
849
+ - fastlane/lib/fastlane/.DS_Store
848
850
  - fastlane/lib/fastlane/action.rb
849
851
  - fastlane/lib/fastlane/action_collector.rb
852
+ - fastlane/lib/fastlane/actions/.DS_Store
850
853
  - fastlane/lib/fastlane/actions/README.md
851
854
  - fastlane/lib/fastlane/actions/actions_helper.rb
852
855
  - fastlane/lib/fastlane/actions/adb.rb
@@ -891,6 +894,8 @@ files:
891
894
  - fastlane/lib/fastlane/actions/deliver.rb
892
895
  - fastlane/lib/fastlane/actions/deploygate.rb
893
896
  - fastlane/lib/fastlane/actions/device_grid/README.md
897
+ - fastlane/lib/fastlane/actions/docs/.DS_Store
898
+ - fastlane/lib/fastlane/actions/docs/assets/.DS_Store
894
899
  - fastlane/lib/fastlane/actions/docs/assets/cert.gif
895
900
  - fastlane/lib/fastlane/actions/docs/assets/cert.png
896
901
  - fastlane/lib/fastlane/actions/docs/assets/deliver.png
@@ -1443,24 +1448,24 @@ metadata:
1443
1448
  post_install_message:
1444
1449
  rdoc_options: []
1445
1450
  require_paths:
1446
- - spaceship/lib
1447
- - scan/lib
1448
- - sigh/lib
1449
- - snapshot/lib
1450
- - screengrab/lib
1451
- - fastlane/lib
1452
1451
  - cert/lib
1453
- - pem/lib
1454
- - gym/lib
1455
- - produce/lib
1452
+ - credentials_manager/lib
1456
1453
  - deliver/lib
1457
- - supply/lib
1458
- - match/lib
1454
+ - fastlane/lib
1455
+ - fastlane_core/lib
1459
1456
  - frameit/lib
1460
- - credentials_manager/lib
1457
+ - gym/lib
1458
+ - match/lib
1459
+ - pem/lib
1461
1460
  - pilot/lib
1462
1461
  - precheck/lib
1463
- - fastlane_core/lib
1462
+ - produce/lib
1463
+ - scan/lib
1464
+ - screengrab/lib
1465
+ - sigh/lib
1466
+ - snapshot/lib
1467
+ - spaceship/lib
1468
+ - supply/lib
1464
1469
  required_ruby_version: !ruby/object:Gem::Requirement
1465
1470
  requirements:
1466
1471
  - - ">="
@@ -1468,14 +1473,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
1468
1473
  version: 2.0.0
1469
1474
  required_rubygems_version: !ruby/object:Gem::Requirement
1470
1475
  requirements:
1471
- - - ">"
1476
+ - - ">="
1472
1477
  - !ruby/object:Gem::Version
1473
- version: 1.3.1
1478
+ version: '0'
1474
1479
  requirements: []
1475
1480
  rubyforge_project:
1476
- rubygems_version: 2.4.5.1
1481
+ rubygems_version: 2.6.8
1477
1482
  signing_key:
1478
1483
  specification_version: 4
1479
1484
  summary: The easiest way to automate beta deployments and releases for your iOS and
1480
1485
  Android apps
1481
1486
  test_files: []
1487
+ has_rdoc: