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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c350e6249a35b24af7d49ce3fc5e2338d7b1e7d
4
- data.tar.gz: de99ca4312f03d470d56aa6c046851d4e46fd25f
3
+ metadata.gz: 23eb08cf31c0bf46dcaf83cd3990c4a309b058e0
4
+ data.tar.gz: 856db68aae7110c110feffc8280eab727de585eb
5
5
  SHA512:
6
- metadata.gz: 481dac79ca57963a8395f6449e0bd27e415ce021d9b17c7a4ae1a6a6d917ec5af85e690a989bc4b94644ddd712c1c67cd4b0f72290a0d65b85b33689213e5884
7
- data.tar.gz: 324a00d3f0e106cbab7209f4afeabaaa659aa6d1723eb959951630038c98b44bd77994fadf5cf110c041356eac7bd4a3016c5ac7d307cb808da387bae2745ec7
6
+ metadata.gz: 41e44af1a80c94fc561d921f30046fb3b947c6ffa67138e9cdef1c55f2617836c194f0de493568cb5c9550d06ba722729c8833cc8bd19a1941468e4724c240c1
7
+ data.tar.gz: e7e08d90fe11ea8e1cc8761f6612741762014e4e06ce65b5634efadd0917af16062d2b5abe4a5cad355924ba206b02e43dab65e0f31e84daf3bd6932264ac9c1
@@ -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 :skip_deploy, :beta
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 :skip_deploy, :force
59
+ deliver(skip_deploy: true, :force: true)
58
60
  # frameit
59
61
  end
60
62
 
@@ -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"] = full_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
 
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.2.0'
2
+ VERSION = '1.2.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.2.0
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-17 00:00:00.000000000 Z
11
+ date: 2015-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri