fastlane-plugin-gs_project_flow_ios 0.1.4 → 0.1.5

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: 0caaf762aab39104d5cb005976518d2eab5b0cb7
4
- data.tar.gz: a1d95cd82dadd54120f71d72e5fac3559220e18b
3
+ metadata.gz: 6082bb580663426c8d45c1ec3b5477c043404674
4
+ data.tar.gz: d794bc953bf7d030a065f940482330c18a737f6e
5
5
  SHA512:
6
- metadata.gz: c02bf3269caa1aed76f945aea38a80dd16824dc4afd492c197a5a6e4969f496f0bde341ee37e36999ef952f7880f7a072e534ea5eb4b992d035b31249eaf78bb
7
- data.tar.gz: 786047cd38ab2223b1d6158fb2d411905e898f5887289a12fe0178d8a7dae5b6b5c07c1348a1bc7aa57f4f9e8d315b6efc16170e446e74eadaed69ac759a6bb1
6
+ metadata.gz: 023b752fdd13dd4c110b882fe3dca64c69985ec3586e23eb5f5b75e934b44432e6dbe27caa8828a803122052de20e57751681c1e20b75c9cebc9bac678a96f1e
7
+ data.tar.gz: 39a4822e5cbdbd79301e127da57bb9934031c35bedbeb9b0447b6e7827080a3e107052258ec0ba1d43954f399e7beb1011f5d3a694a231820555659a29de4ea6
@@ -17,7 +17,11 @@ module Fastlane
17
17
  end
18
18
 
19
19
  # cocoapods(use_bundle_exec: false)
20
- CocoapodsAction.run(use_bundle_exec: false, clean: true, integrate: true, ansi: true)
20
+ # CocoapodsAction.run(use_bundle_exec: false) #, clean: true, integrate: true, ansi: true)
21
+ action = 'cocoapods'
22
+ class_ref = Actions.action_class_ref(action)
23
+ r = Runner.new
24
+ r.execute_action(action, class_ref, [parameters])
21
25
  end
22
26
 
23
27
  def self.description
@@ -0,0 +1,84 @@
1
+ module Fastlane
2
+ module Actions
3
+ class GsBeforeAllAction < Action
4
+ def self.run(params)
5
+ # require 'fastlane/plugin/gs_versioning'
6
+ # require 'fastlane/plugin/versioning'
7
+ # # match(type: "appstore") # more information: https://codesigning.guide
8
+ # # Increment the build number (not the version number)
9
+ # v = GsIncrementBetaVersionAction.run(path:ENV["path_to_versions"])
10
+ # version_name = v.major.to_s + "." + v.minor.to_s + "." + v.build.to_s
11
+ # IncrementBuildNumberInPlist.run(xcodeproj:ENV["xcodeproj"],
12
+ # target:ENV["target"],
13
+ # build_number: v.build.to_s
14
+ # )
15
+ # IncrementVersionNumberInPlist.run(
16
+ # version_number: v.major.to_s + "." + v.minor.to_s + ".0",
17
+ # xcodeproj: ENV["xcodeproj"],
18
+ # target: ENV["target"]
19
+ # )
20
+ #
21
+ # generateReleaseNotes("fileBeta", ENV["ALIAS"], version_name, "Ru")
22
+ # generateReleaseNotes("fileBeta", ENV["ALIAS"], version_name, "En")
23
+ #
24
+ # ruText = FileHelper.read(Dir.pwd + "/../../../notes/" + ENV["ALIAS"] + "/" + version_name + "_Ru.txt")
25
+ # enText = FileHelper.read(Dir.pwd + "/../../../notes/" + ENV["ALIAS"] + "/" + version_name + "_En.txt")
26
+ #
27
+ # require 'date'
28
+ # current_time = DateTime.now
29
+ # time_string = current_time.strftime "%d.%m.%Y %H-%M"
30
+ # crashlytics_changelog = time_string + "\n" + ruText + "\n\n" + enText
31
+ # Dir.chdir ".." do
32
+ # UI.message(Dir.pwd)
33
+ # sh "chmod 744 ./DeleteDerrivedData.sh"
34
+ # sh Dir.pwd+"/DeleteDerrivedData.sh"
35
+ # end
36
+ # gym(scheme: ENV["APP_SCHEME"],
37
+ # export_method:"ad-hoc") # Build your app - more options available
38
+ # crashlytics(notes: crashlytics_changelog,
39
+ # groups: ENV["CRASHLYTICS_GROUPS"]
40
+ # )
41
+ # #
42
+ # # sh "your_script.sh"
43
+ # gs_save_beta_version(path:ENV["path_to_versions"], version: v)
44
+ # UI.success("✅ App is released to Crashlytics")
45
+ # # You can also use other beta testing services here (run fastlane actions)
46
+ end
47
+
48
+ def self.description
49
+ "Plugin contains project flow code for code sharing between projects"
50
+ end
51
+
52
+ def self.authors
53
+ ["Сергей Веселовский"]
54
+ end
55
+
56
+ def self.return_value
57
+ # If your method provides a return value, you can describe here what it does
58
+ end
59
+
60
+ def self.details
61
+ # Optional:
62
+ "Plugin contains project flow code for code sharing between GradoService projects"
63
+ end
64
+
65
+ def self.available_options
66
+ [
67
+ # FastlaneCore::ConfigItem.new(key: :your_option,
68
+ # env_name: "GS_PROJECT_FLOW_IOS_YOUR_OPTION",
69
+ # description: "A description of your option",
70
+ # optional: false,
71
+ # type: String)
72
+ ]
73
+ end
74
+
75
+ def self.is_supported?(platform)
76
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
77
+ # See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
78
+ #
79
+ # [:ios, :mac, :android].include?(platform)
80
+ true
81
+ end
82
+ end
83
+ end
84
+ end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GsProjectFlowIos
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
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
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Сергей Веселовский
@@ -101,6 +101,7 @@ extensions: []
101
101
  extra_rdoc_files: []
102
102
  files:
103
103
  - lib/fastlane/plugin/gs_project_flow_ios/actions/gs_before_all_action.rb
104
+ - lib/fastlane/plugin/gs_project_flow_ios/actions/gs_execute_beta_lane.rb
104
105
  - lib/fastlane/plugin/gs_project_flow_ios/helper/gs_project_flow_ios_helper.rb
105
106
  - lib/fastlane/plugin/gs_project_flow_ios/version.rb
106
107
  - lib/fastlane/plugin/gs_project_flow_ios.rb