fastlane 1.3.1 → 1.3.2

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: c1030f64ab221454a4870fc80940fe860ef51555
4
- data.tar.gz: 1778daaeb95c5bbecf4d8a1db7bb2569d5ef9265
3
+ metadata.gz: 93d20266aa0c203f63a6c399a31537ff930361cd
4
+ data.tar.gz: 016d35fa856450da75f97aa5e8740340c25435d7
5
5
  SHA512:
6
- metadata.gz: 788c92c0cbf4ced9396facb5fceb4616b5cba07acdab1174b70693b906321faeddb5ca65e21f3f85cc0b888a121b5b435953e6656075dd3cba4e167f03a8d5a4
7
- data.tar.gz: 0df76dc87468890926adfc61654d55ff303e6c66e4c87d0b3b3ff452c20178bbdd4ae84eff9d68648d78a88488d98878d2d6eb7e5e94292ecd5a8298807d1bd9
6
+ metadata.gz: 22f9d45effba8f83fec937c0a78ab0d96976f4ca66f3690708064295ae7240d660dcd4e6db9f747849015907ebac092e0c1391e95677b02ccef0493a3cd62be9
7
+ data.tar.gz: 0c0400bcf5d1f277f77cb088bb1c9c452946667322e68bb0ac2b14bcd5b6bb69ab9ca547875d7cb5c294355b8bbef93ca65648e7c3c1a063a17c2a732ff29d92
data/README.md CHANGED
@@ -98,9 +98,7 @@ I recommend following the [fastlane guide](https://github.com/KrauseFx/fastlane/
98
98
 
99
99
  If you are familiar with the command line and Ruby, install `fastlane` yourself:
100
100
 
101
- sudo gem install fastlane
102
-
103
- The initial installation might take a few minutes without showing any output.
101
+ sudo gem install fastlane --verbose
104
102
 
105
103
  Make sure, you have the latest version of the Xcode command line tools installed:
106
104
 
@@ -100,8 +100,7 @@ module Fastlane
100
100
  description: "Forces the commit, even if other files than the ones containing the version number have been modified",
101
101
  optional: true,
102
102
  default_value: false,
103
- is_string: false
104
- )
103
+ is_string: false)
105
104
  ]
106
105
  end
107
106
 
@@ -46,7 +46,6 @@ module Fastlane
46
46
  FastlaneCore::ConfigItem.new(key: :force_device_type,
47
47
  env_name: "FRAMEIT_FORCE_DEVICE_TYPE",
48
48
  description: "Forces a given device type, useful for Mac screenshots, as their sizes vary",
49
- default_value: '',
50
49
  optional: true,
51
50
  verify_block: Proc.new do |value|
52
51
  available = ['iPhone_6_Plus', 'iPhone_5s', 'iPhone_4', 'iPad_mini', 'Mac']
@@ -36,10 +36,7 @@ module Fastlane
36
36
  FastlaneCore::ConfigItem.new(key: :udid,
37
37
  env_name: "FL_PROJECT_SIGNING_UDID",
38
38
  description: "The UDID of the provisioning profile you want to use",
39
- default_value: ENV["SIGH_UDID"],
40
- verify_block: Proc.new do |value|
41
- raise "Path is invalid".red unless File.exists?(value)
42
- end)
39
+ default_value: ENV["SIGH_UDID"])
43
40
  ]
44
41
  end
45
42
 
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.3.1'
2
+ VERSION = '1.3.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
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-05-26 00:00:00.000000000 Z
11
+ date: 2015-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -382,14 +382,19 @@ executables:
382
382
  extensions: []
383
383
  extra_rdoc_files: []
384
384
  files:
385
+ - LICENSE
386
+ - README.md
387
+ - bin/fastlane
385
388
  - lib/assets/AppfileTemplate
386
- - lib/assets/custom_action_template.rb
387
389
  - lib/assets/FastfileTemplate
390
+ - lib/assets/custom_action_template.rb
388
391
  - lib/assets/s3_html_template.erb
389
392
  - lib/assets/s3_plist_template.erb
390
393
  - lib/assets/s3_version_template.erb
394
+ - lib/fastlane.rb
391
395
  - lib/fastlane/action.rb
392
396
  - lib/fastlane/action_collector.rb
397
+ - lib/fastlane/actions/README.md
393
398
  - lib/fastlane/actions/actions_helper.rb
394
399
  - lib/fastlane/actions/add_git_tag.rb
395
400
  - lib/fastlane/actions/cert.rb
@@ -420,7 +425,6 @@ files:
420
425
  - lib/fastlane/actions/pem.rb
421
426
  - lib/fastlane/actions/produce.rb
422
427
  - lib/fastlane/actions/push_to_git_remote.rb
423
- - lib/fastlane/actions/README.md
424
428
  - lib/fastlane/actions/register_devices.rb
425
429
  - lib/fastlane/actions/reset_git_repo.rb
426
430
  - lib/fastlane/actions/resign.rb
@@ -454,10 +458,6 @@ files:
454
458
  - lib/fastlane/setup.rb
455
459
  - lib/fastlane/supported_platforms.rb
456
460
  - lib/fastlane/version.rb
457
- - lib/fastlane.rb
458
- - bin/fastlane
459
- - README.md
460
- - LICENSE
461
461
  homepage: https://fastlane.tools
462
462
  licenses:
463
463
  - MIT
@@ -478,7 +478,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
478
478
  version: '0'
479
479
  requirements: []
480
480
  rubyforge_project:
481
- rubygems_version: 2.0.14
481
+ rubygems_version: 2.4.7
482
482
  signing_key:
483
483
  specification_version: 4
484
484
  summary: Connect all iOS deployment tools into one streamlined workflow