fastlane 0.1.16 → 0.1.17
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/fastlane/actions/sigh.rb +3 -18
- data/lib/fastlane/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 990a4c33219bf6ede28910783bb7c1d69cf43aac
|
|
4
|
+
data.tar.gz: 6cc51c2c95034b0175d065dc728a7679d5235676
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b0694deae169ac03823891331f17405bf5643211362d38c586035fbbf43c2544c6fddc31a0aeb44e1acde2f2ebd9f664f84f643eaf3855801380bef9af0c1c7
|
|
7
|
+
data.tar.gz: 00a3bf1a20ab0e651ef24c68d3ef57a6cd3493d9613a8efe413a51f5f3ba4947c5507f5017f744036da7e61fe5360602b5b849b019f1ef837b5ff006c969c8f1
|
|
@@ -9,27 +9,12 @@ module Fastlane
|
|
|
9
9
|
def self.run(params)
|
|
10
10
|
require 'sigh'
|
|
11
11
|
require 'sigh/options'
|
|
12
|
+
require 'sigh/manager'
|
|
12
13
|
require 'credentials_manager/appfile_config'
|
|
13
14
|
|
|
14
15
|
Sigh.config = FastlaneCore::Configuration.create(Sigh::Options.available_options, (params.first || {}))
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
path = File.expand_path(File.join('.', File.basename(path)))
|
|
20
|
-
if path
|
|
21
|
-
if Sigh.config[:filename]
|
|
22
|
-
file_name = Sigh.config[:filename]
|
|
23
|
-
else
|
|
24
|
-
file_name = File.basename(path)
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
output = File.join(Sigh.config[:output_path].gsub("~", ENV["HOME"]), file_name)
|
|
28
|
-
(FileUtils.mv(path, output) rescue nil) # in case it already exists
|
|
29
|
-
system("open -g '#{output}'") unless Sigh.config[:skip_install]
|
|
30
|
-
puts output.green
|
|
31
|
-
path = output
|
|
32
|
-
end
|
|
16
|
+
|
|
17
|
+
path = Sigh::Manager.start
|
|
33
18
|
|
|
34
19
|
Actions.lane_context[SharedValues::SIGH_PROFILE_PATH] = path # absolute path
|
|
35
20
|
Actions.lane_context[SharedValues::SIGH_UDID] = ENV["SIGH_UDID"] if ENV["SIGH_UDID"] # The UDID of the new profile
|
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: 0.1.
|
|
4
|
+
version: 0.1.17
|
|
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-03-
|
|
11
|
+
date: 2015-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -142,14 +142,14 @@ dependencies:
|
|
|
142
142
|
requirements:
|
|
143
143
|
- - '>='
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
|
-
version: 0.4.
|
|
145
|
+
version: 0.4.3
|
|
146
146
|
type: :runtime
|
|
147
147
|
prerelease: false
|
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
149
|
requirements:
|
|
150
150
|
- - '>='
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: 0.4.
|
|
152
|
+
version: 0.4.3
|
|
153
153
|
- !ruby/object:Gem::Dependency
|
|
154
154
|
name: produce
|
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|