fastlane-plugin-gs_project_flow_ios 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb2a179923d44449621e35c92b1cbb55ef8caab5
4
- data.tar.gz: 226ee4345444a0f1f48fad98ca70efba2d9e1766
3
+ metadata.gz: ea96b7333a032bb16d0af2e94b73afbea6dde645
4
+ data.tar.gz: 704be9a8c942c98f96b4de02e062dae5911b7791
5
5
  SHA512:
6
- metadata.gz: 27e5c89ae7d452d0eb01abb2bd3e69431a07c9e8ad9e74312dd0ca4c6650eec1ee4b78ec1141c5f36b59645637ce98640625a3d8c0cfbbbc0f66653db10a3682
7
- data.tar.gz: 5df5c6315303b477e6d6d5ba4f15fb8a57dfe663365c25c33b5a79e5bd2f7affeed2ae35b680366438af75983a50351b163c08fcd42f5ddf03d10dba4934f4f0
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
- r.execute_action(action, class_ref, [parameters], custom_dir: '.')
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GsProjectFlowIos
3
- VERSION = "0.1.11"
3
+ VERSION = "0.1.12"
4
4
  end
5
5
  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.11
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-24 00:00:00.000000000 Z
11
+ date: 2017-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry