fastlane 1.2.0 → 1.2.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 +4 -4
- data/lib/assets/FastfileTemplate +4 -2
- data/lib/fastlane/runner.rb +2 -1
- data/lib/fastlane/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23eb08cf31c0bf46dcaf83cd3990c4a309b058e0
|
|
4
|
+
data.tar.gz: 856db68aae7110c110feffc8280eab727de585eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41e44af1a80c94fc561d921f30046fb3b947c6ffa67138e9cdef1c55f2617836c194f0de493568cb5c9550d06ba722729c8833cc8bd19a1941468e4724c240c1
|
|
7
|
+
data.tar.gz: e7e08d90fe11ea8e1cc8761f6612741762014e4e06ce65b5634efadd0917af16062d2b5abe4a5cad355924ba206b02e43dab65e0f31e84daf3bd6932264ac9c1
|
data/lib/assets/FastfileTemplate
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Customise this file, documentation can be found here:
|
|
2
2
|
# https://github.com/KrauseFx/fastlane/tree/master/docs
|
|
3
|
+
# All available actions: https://github.com/KrauseFx/fastlane/blob/master/docs/Actions.md
|
|
4
|
+
# can also be listed using the `fastlane actions` command
|
|
3
5
|
|
|
4
6
|
# Change the syntax highlighting to Ruby
|
|
5
7
|
# All lines starting with a # are ignored when running `fastlane`
|
|
@@ -43,7 +45,7 @@ platform :ios do
|
|
|
43
45
|
lane :beta do
|
|
44
46
|
snapshot
|
|
45
47
|
sigh
|
|
46
|
-
deliver
|
|
48
|
+
deliver(skip_deploy: true, beta: true)
|
|
47
49
|
|
|
48
50
|
# sh "your_script.sh"
|
|
49
51
|
# You can also use other beta testing services here
|
|
@@ -54,7 +56,7 @@ platform :ios do
|
|
|
54
56
|
lane :deploy do
|
|
55
57
|
snapshot
|
|
56
58
|
sigh
|
|
57
|
-
deliver
|
|
59
|
+
deliver(skip_deploy: true, :force: true)
|
|
58
60
|
# frameit
|
|
59
61
|
end
|
|
60
62
|
|
data/lib/fastlane/runner.rb
CHANGED
|
@@ -16,7 +16,8 @@ module Fastlane
|
|
|
16
16
|
full_lane_name = [platform, lane].reject(&:nil?).join(' ')
|
|
17
17
|
Helper.log.info "Driving the lane '#{full_lane_name}'".green
|
|
18
18
|
Actions.lane_context[Actions::SharedValues::LANE_NAME] = full_lane_name
|
|
19
|
-
ENV["FASTLANE_LANE_NAME"] =
|
|
19
|
+
ENV["FASTLANE_LANE_NAME"] = lane.to_s
|
|
20
|
+
ENV["FASTLANE_PLATFORM_NAME"] = platform.to_s
|
|
20
21
|
|
|
21
22
|
return_val = nil
|
|
22
23
|
|
data/lib/fastlane/version.rb
CHANGED
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.2.
|
|
4
|
+
version: 1.2.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-
|
|
11
|
+
date: 2015-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|