fastlane-plugin-gradle_manager 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 58779a8d830640c3d5e132dbacf2de3941534c21
4
+ data.tar.gz: 3251d6b7f2c9c4fd8cdda134b8843f17ce2fc54e
5
+ SHA512:
6
+ metadata.gz: 6f6ec68eb10582485965c74162acb8764808d132abd8ba96117f03267dae749e8e2a46f4aa73423ac7d20510d5bfe5f8feaf4e4d0324163ad130d70fa81c86fb
7
+ data.tar.gz: 1f6c2cc81bbcb3434afc94a05325fe942de495ef47b1a0907c842f382edae8a64e04b48a8765a05eba54cf68a3ac27c613e4ea0c630004048b6ba769cfcf794a
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Helder Pinhal <helder.pinhal@mangrove.nl>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # gradle_manager plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-gradle_manager)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-gradle_manager`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin gradle_manager
11
+ ```
12
+
13
+ ## About gradle_manager
14
+
15
+ Exposes some Android configurations from the gradle file.
16
+
17
+ **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
18
+
19
+ ## Example
20
+
21
+ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
+
23
+ **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
+
25
+ ## Run tests for this plugin
26
+
27
+ To run both the tests, and code style validation, run
28
+
29
+ ```
30
+ rake
31
+ ```
32
+
33
+ To automatically fix many of the styling issues, use
34
+ ```
35
+ rubocop -a
36
+ ```
37
+
38
+ ## Issues and Feedback
39
+
40
+ For any other issues and feedback about this plugin, please submit it to this repository.
41
+
42
+ ## Troubleshooting
43
+
44
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
45
+
46
+ ## Using _fastlane_ Plugins
47
+
48
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
49
+
50
+ ## About _fastlane_
51
+
52
+ _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/gradle_manager/version'
2
+
3
+ module Fastlane
4
+ module GradleManager
5
+ # Return all .rb files inside the "actions" and "helper" directory
6
+ def self.all_classes
7
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
+ end
9
+ end
10
+ end
11
+
12
+ # By default we want to import all available actions and helpers
13
+ # A plugin can contain any number of actions and plugins
14
+ Fastlane::GradleManager.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,71 @@
1
+ module Fastlane
2
+ module Actions
3
+ class GetGradleDataAction < Action
4
+ def self.run(params)
5
+ gradle_file_path ||= params[:gradle_file_path]
6
+
7
+ if !gradle_file_path.nil?
8
+ UI.message("The gradle_manager plugin will use gradle file at (#{gradle_file_path})!")
9
+ else
10
+ module_folder_name = params[:module_folder_name]
11
+ UI.message("The gradle_manager plugin is looking inside your project folder (#{module_folder_name})!")
12
+
13
+ Dir.glob("**/#{module_folder_name}/build.gradle") do |path|
14
+ UI.message(" -> Found a build.gradle file at path: (#{path})!")
15
+ gradle_file_path = path
16
+ end
17
+ end
18
+
19
+ begin
20
+ gradle_data = Helper::GradleHelper.parse(gradle_file_path)
21
+ # Fastlane::GradleManager::SharedValues::GRADLE_MANAGER_RAW_DATA
22
+ Actions.lane_context['GRADLE_MANAGER_RAW_DATA'] = gradle_data
23
+ UI.success('👍 gradle data successfully parsed')
24
+ return gradle_data
25
+ rescue => err
26
+ UI.error("An exception occurred while parsing the gradle file: #{err}")
27
+ end
28
+ end
29
+
30
+ def self.description
31
+ 'Get the parsed Gradle file of an Android project.'
32
+ end
33
+
34
+ def self.authors
35
+ ['Helder Pinhal']
36
+ end
37
+
38
+ def self.return_value
39
+ 'Returns the parsed Gradle file.'
40
+ end
41
+
42
+ def self.details
43
+ [
44
+ 'Get the parsed Gradle file of an Android project.',
45
+ 'This action will return the parsed Gradle file based on the path you\'ve specified.'
46
+ ].join('\n')
47
+ end
48
+
49
+ def self.available_options
50
+ [
51
+ FastlaneCore::ConfigItem.new(key: :module_name,
52
+ env_name: 'GRADLE_MANAGER_MODULE_NAME',
53
+ description: 'The name of the application source folder in the Android project (default: app)',
54
+ optional: true,
55
+ type: String,
56
+ default_value: 'app'),
57
+ FastlaneCore::ConfigItem.new(key: :gradle_file_path,
58
+ env_name: 'GRADLE_MANAGER_GRADLE_FILE_PATH',
59
+ description: 'The relative path to the gradle file (default:app/build.gradle)',
60
+ optional: true,
61
+ type: String,
62
+ default_value: nil)
63
+ ]
64
+ end
65
+
66
+ def self.is_supported?(platform)
67
+ [:android].include?(platform)
68
+ end
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,12 @@
1
+ module Fastlane
2
+ module Helper
3
+ class GradleManagerHelper
4
+ # class methods that you define here become available in your action
5
+ # as `Helper::GradleManagerHelper.your_method`
6
+ #
7
+ def self.show_message
8
+ UI.message("Hello from the gradle_manager plugin helper!")
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,124 @@
1
+ module Fastlane
2
+ module Helper
3
+ class GradleParserHelper
4
+ def self.parse(gradle_file)
5
+ reset
6
+
7
+ unless File.file?(gradle_file)
8
+ return nil
9
+ end
10
+
11
+ begin
12
+ file = File.new(gradle_file, 'r')
13
+ while (line = file.gets)
14
+ handle_line(line)
15
+ end
16
+ file.close
17
+ rescue => err
18
+ throw err
19
+ end
20
+
21
+ return @result
22
+ end
23
+
24
+ def reset
25
+ @reading_default_config = false
26
+ @reading_product_flavors = false
27
+ @reading_product_flavor_block = false
28
+ @current_indent = 0
29
+ @result = {}
30
+ end
31
+
32
+ def handle_line(line)
33
+ if line.include? 'defaultConfig'
34
+ @result[:default_config] = {}
35
+ @reading_default_config = true
36
+ elsif line.include? 'productFlavors'
37
+ @result[:product_flavors] = {}
38
+ @reading_product_flavor_block = true
39
+ @current_indent = 0
40
+ elsif @reading_default_config
41
+ handle_default_config(line)
42
+ elsif @reading_product_flavor_block
43
+ handle_product_flavor_block(line)
44
+ elsif @reading_product_flavors
45
+ handle_product_flavors(line)
46
+ end
47
+ end
48
+
49
+ def handle_default_config(line)
50
+ trimmed = line.strip
51
+
52
+ if trimmed == '}'
53
+ @reading_default_config = false
54
+ return
55
+ end
56
+
57
+ components = trimmed.split(' ')
58
+ return unless !components.nil? && components.length > 0
59
+
60
+ key = components[0].tr("\"", '')
61
+ case key
62
+ when 'applicationId'
63
+ symbol = :application_id
64
+ when 'versionCode'
65
+ symbol = :version_code
66
+ when 'versionName'
67
+ symbol = :version_name
68
+ else
69
+ return
70
+ end
71
+
72
+ @result[:default_config][symbol] = components[components.length - 1].tr('\"', '')
73
+ end
74
+
75
+ def handle_product_flavors(line)
76
+ trimmed = line.strip
77
+
78
+ if trimmed == '}'
79
+ @current_indent -= 1
80
+ @reading_product_flavors = false if @current_indent < 0
81
+ return
82
+ end
83
+
84
+ components = trimmed.split(' ')
85
+ return unless !components.nil? && components.length > 0 && components[components.length - 1].tr("\"", '') == '{'
86
+
87
+ flavor = components[0].tr("\"", '')
88
+ @result[:product_flavors][flavor] = {}
89
+ @current_indent += 1
90
+ @reading_product_flavor_block = true
91
+ end
92
+
93
+ def handle_product_flavor_block(line)
94
+ trimmed = line.strip
95
+
96
+ if trimmed == '}'
97
+ @current_indent -= 1
98
+ @reading_product_flavor_block = false
99
+ return
100
+ end
101
+
102
+ components = trimmed.split(' ')
103
+ return unless !components.nil? && components.length > 0
104
+
105
+ key = components[0].tr("\"", '')
106
+ case key
107
+ when 'applicationId'
108
+ symbol = :application_id
109
+ when 'applicationIdSuffix'
110
+ symbol = :application_id_suffix
111
+ when 'versionCode'
112
+ symbol = :version_code
113
+ when 'versionName'
114
+ symbol = :version_name
115
+ else
116
+ return
117
+ end
118
+
119
+ flavors = @result[:product_flavors].keys
120
+ @result[:product_flavors][flavors[flavors.length - 1]][symbol] = components[components.length - 1].tr('\"', '')
121
+ end
122
+ end
123
+ end
124
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module GradleManager
3
+ VERSION = '0.1.0'
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-gradle_manager
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Helder Pinhal
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-11-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pry
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec_junit_formatter
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 0.49.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 0.49.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: fastlane
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 2.64.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: 2.64.1
125
+ description:
126
+ email: pinhal.helder@gmail.com
127
+ executables: []
128
+ extensions: []
129
+ extra_rdoc_files: []
130
+ files:
131
+ - LICENSE
132
+ - README.md
133
+ - lib/fastlane/plugin/gradle_manager.rb
134
+ - lib/fastlane/plugin/gradle_manager/actions/get_gradle_data_action.rb
135
+ - lib/fastlane/plugin/gradle_manager/helper/gradle_manager_helper.rb
136
+ - lib/fastlane/plugin/gradle_manager/helper/gradle_parser_helper.rb
137
+ - lib/fastlane/plugin/gradle_manager/version.rb
138
+ homepage: https://github.com/hpinhal/fastlane-plugin-gradle-manager
139
+ licenses:
140
+ - MIT
141
+ metadata: {}
142
+ post_install_message:
143
+ rdoc_options: []
144
+ require_paths:
145
+ - lib
146
+ required_ruby_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ requirements: []
157
+ rubyforge_project:
158
+ rubygems_version: 2.5.2
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: Exposes some Android configurations from the gradle file.
162
+ test_files: []