fastlane-plugin-gs_project_flow_ios 0.1.11 → 0.1.12
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea96b7333a032bb16d0af2e94b73afbea6dde645
|
|
4
|
+
data.tar.gz: 704be9a8c942c98f96b4de02e062dae5911b7791
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f6c91955cbd094abdfce22734234fd243e0b0fc8169cd12c1850cdbe1e3adf405002457b4181585ee6fe30230dae3a61386c2cee34679fbffe418b53d1a5c2d
|
|
7
|
+
data.tar.gz: 5921d780479ef2f608f32726884ebefabe987e2a5d0f2d2cc0265aae61faffc282db299af0edd637852fedbc4162ee99c02eb660f8c1fa8b65a2ceacf9386b49
|
|
@@ -19,11 +19,16 @@ module Fastlane
|
|
|
19
19
|
# cocoapods(use_bundle_exec: false)
|
|
20
20
|
# CocoapodsAction.run(use_bundle_exec: false) #, clean: true, integrate: true, ansi: true)
|
|
21
21
|
action = 'cocoapods'
|
|
22
|
-
class_ref = Actions.action_class_ref(action)
|
|
23
|
-
UI.message("class ref = " + Dir.pwd)
|
|
24
|
-
r = Runner.new
|
|
25
22
|
parameters = {:use_bundle_exec => false}
|
|
26
|
-
|
|
23
|
+
|
|
24
|
+
require '../../../../../lib/fastlane/plugin/gs_project_flow_ios/helper/gs_project_flow_ios_helper'
|
|
25
|
+
GsProjectFlowIosHelper.new.execute_action(action,parameters)
|
|
26
|
+
|
|
27
|
+
# class_ref = Actions.action_class_ref(action)
|
|
28
|
+
# UI.message("class ref = " + Dir.pwd)
|
|
29
|
+
# r = Runner.new
|
|
30
|
+
#
|
|
31
|
+
# r.execute_action(action, class_ref, [parameters], custom_dir: '.')
|
|
27
32
|
end
|
|
28
33
|
|
|
29
34
|
def self.description
|
|
@@ -8,6 +8,12 @@ module Fastlane
|
|
|
8
8
|
return Dir.pwd+"/../../../versions.json"
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
+
def execute_action(action, parameters, class_ref: nil, custom_dir: '.', from_action: false)
|
|
12
|
+
local_class_ref = Actions.action_class_ref(action) if class_ref.nil? else local_class_ref = class_ref
|
|
13
|
+
r = Runner.new
|
|
14
|
+
r.execute_action(action, local_class_ref, [parameters], custom_dir: custom_dir, from_action: from_action)
|
|
15
|
+
end
|
|
16
|
+
|
|
11
17
|
def self.show_message
|
|
12
18
|
UI.message("Hello from the gs_project_flow_ios plugin helper!")
|
|
13
19
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-gs_project_flow_ios
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Сергей Веселовский
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|