fastlane 1.3.0 → 1.3.1

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: cac5549eaf49e5cf8e11a96dbf3e2ffc7114d33c
4
- data.tar.gz: dc206f2c9fc9256cbbcb41659f0c20e15609de31
3
+ metadata.gz: c1030f64ab221454a4870fc80940fe860ef51555
4
+ data.tar.gz: 1778daaeb95c5bbecf4d8a1db7bb2569d5ef9265
5
5
  SHA512:
6
- metadata.gz: fa3692f494fd08521731dde9533a3130010a7a32a39862dd345e50ab656f5bf6e6d5ae762cc968c69929d6a708d41685839a95ede9913a12e371c226e650ccdf
7
- data.tar.gz: 15454ec54ca8062dbe512a908a675ce592872b212f7a357005899c92be30710c8c0d7a6592dccd17e6234effb15a9ef9ab1289cced12893ce8920bf8a0e50b5a
6
+ metadata.gz: 788c92c0cbf4ced9396facb5fceb4616b5cba07acdab1174b70693b906321faeddb5ca65e21f3f85cc0b888a121b5b435953e6656075dd3cba4e167f03a8d5a4
7
+ data.tar.gz: 0df76dc87468890926adfc61654d55ff303e6c66e4c87d0b3b3ff452c20178bbdd4ae84eff9d68648d78a88488d98878d2d6eb7e5e94292ecd5a8298807d1bd9
data/README.md CHANGED
@@ -99,6 +99,8 @@ I recommend following the [fastlane guide](https://github.com/KrauseFx/fastlane/
99
99
  If you are familiar with the command line and Ruby, install `fastlane` yourself:
100
100
 
101
101
  sudo gem install fastlane
102
+
103
+ The initial installation might take a few minutes without showing any output.
102
104
 
103
105
  Make sure, you have the latest version of the Xcode command line tools installed:
104
106
 
@@ -74,6 +74,7 @@ module Fastlane
74
74
 
75
75
  def self.sh_no_action(command)
76
76
  # Set the encoding first, the user might have set it wrong
77
+ previous_encoding = [Encoding.default_external, Encoding.default_internal]
77
78
  Encoding.default_external = Encoding::UTF_8
78
79
  Encoding.default_internal = Encoding::UTF_8
79
80
 
@@ -101,6 +102,11 @@ module Fastlane
101
102
  end
102
103
 
103
104
  result
105
+ rescue => ex
106
+ raise ex
107
+ ensure
108
+ Encoding.default_external = previous_encoding.first
109
+ Encoding.default_internal = previous_encoding.last
104
110
  end
105
111
 
106
112
  # Returns the current git branch - can be replaced using the environment variable `GIT_BRANCH`
@@ -127,7 +133,7 @@ module Fastlane
127
133
  def self.load_external_actions(path)
128
134
  raise 'You need to pass a valid path' unless File.exist?(path)
129
135
 
130
- Dir[File.expand_path '*.rb', path].each do |file|
136
+ Dir[File.expand_path('*.rb', path)].each do |file|
131
137
  require file
132
138
 
133
139
  file_name = File.basename(file).gsub('.rb', '')
@@ -12,6 +12,7 @@ module Fastlane
12
12
  begin
13
13
  ENV['DELIVER_SCREENSHOTS_PATH'] = Actions.lane_context[SharedValues::SNAPSHOT_SCREENSHOTS_PATH] # use snapshot's screenshots if there
14
14
  ENV['DELIVER_SKIP_BINARY'] = "1" if config[:metadata_only]
15
+ ENV['DELIVER_VERSION'] = Actions.lane_context[SharedValues::VERSION_NUMBER].to_s
15
16
 
16
17
  Dir.chdir(config[:deliver_file_path] || FastlaneFolder.path || Dir.pwd) do
17
18
  # This should be executed in the fastlane folder
@@ -75,7 +75,7 @@ module Fastlane
75
75
  # Joins args into space delimited string
76
76
  build_args = build_args.join(' ')
77
77
 
78
- command = "ipa distribute:s3 #{build_args}"
78
+ command = "krausefx-ipa distribute:s3 #{build_args}"
79
79
  Helper.log.debug command
80
80
  Actions.sh command
81
81
 
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.3.0'
2
+ VERSION = '1.3.1'
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.0
4
+ version: 1.3.1
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-22 00:00:00.000000000 Z
11
+ date: 2015-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -156,14 +156,14 @@ dependencies:
156
156
  requirements:
157
157
  - - '>='
158
158
  - !ruby/object:Gem::Version
159
- version: 0.7.4
159
+ version: 0.7.5
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - '>='
165
165
  - !ruby/object:Gem::Version
166
- version: 0.7.4
166
+ version: 0.7.5
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: deliver
169
169
  requirement: !ruby/object:Gem::Requirement
@@ -382,19 +382,14 @@ executables:
382
382
  extensions: []
383
383
  extra_rdoc_files: []
384
384
  files:
385
- - LICENSE
386
- - README.md
387
- - bin/fastlane
388
385
  - lib/assets/AppfileTemplate
389
- - lib/assets/FastfileTemplate
390
386
  - lib/assets/custom_action_template.rb
387
+ - lib/assets/FastfileTemplate
391
388
  - lib/assets/s3_html_template.erb
392
389
  - lib/assets/s3_plist_template.erb
393
390
  - lib/assets/s3_version_template.erb
394
- - lib/fastlane.rb
395
391
  - lib/fastlane/action.rb
396
392
  - lib/fastlane/action_collector.rb
397
- - lib/fastlane/actions/README.md
398
393
  - lib/fastlane/actions/actions_helper.rb
399
394
  - lib/fastlane/actions/add_git_tag.rb
400
395
  - lib/fastlane/actions/cert.rb
@@ -425,6 +420,7 @@ files:
425
420
  - lib/fastlane/actions/pem.rb
426
421
  - lib/fastlane/actions/produce.rb
427
422
  - lib/fastlane/actions/push_to_git_remote.rb
423
+ - lib/fastlane/actions/README.md
428
424
  - lib/fastlane/actions/register_devices.rb
429
425
  - lib/fastlane/actions/reset_git_repo.rb
430
426
  - lib/fastlane/actions/resign.rb
@@ -458,6 +454,10 @@ files:
458
454
  - lib/fastlane/setup.rb
459
455
  - lib/fastlane/supported_platforms.rb
460
456
  - 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.2.2
481
+ rubygems_version: 2.0.14
482
482
  signing_key:
483
483
  specification_version: 4
484
484
  summary: Connect all iOS deployment tools into one streamlined workflow