fastlane-plugin-build_log_info 0.1.1

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: a3a6de78197a8451eb129856e34895cc60d2b5cc
4
+ data.tar.gz: 0f7dbc0b3365738a5a8674dc282904f57f42545a
5
+ SHA512:
6
+ metadata.gz: e21afab46d0394cadd124b2d73c546d8b960a9815e126127cf442f1edffc8ef074e6a56d40d0e5ecf3869f7631a9f60973b3ad7418080dc1d5a76deb0a372e55
7
+ data.tar.gz: 2bf5474d9590389a39f34fd9a718476fa92b8f2c0d3c8e56006eabc0f50edad7a9f9eaec84cf10c540aa614696a773ce60b0b388fac7fe969a74d66035967dfe
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 tarappo <thirata@pplace.jp>
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,89 @@
1
+ # build_log_info plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-build_log_info)
4
+ [![CircleCI](https://circleci.com/gh/tarappo/fastlane-plugin-build_log_info.svg?style=svg)](https://circleci.com/gh/tarappo/fastlane-plugin-build_log_info)
5
+
6
+ ## Getting Started
7
+
8
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-build_log_info`, add it to your project by running:
9
+
10
+ ```bash
11
+ fastlane add_plugin build_log_info
12
+ ```
13
+
14
+ ## About build_log_info
15
+
16
+ show build log information
17
+
18
+
19
+ ## Fastlane Example
20
+ You need set xcpretty_formatter that is xcpretty-json-formatter.
21
+
22
+
23
+ ```
24
+ # [NEED] you need set xcpretty_formatter
25
+ gym(
26
+ xcpretty_formatter: `xcpretty-json-formatter`
27
+ )
28
+
29
+ build_log_info
30
+ ```
31
+
32
+
33
+ ## Example Result
34
+
35
+ ```
36
+ +--------------------------+-----+
37
+ | Summary |
38
+ +--------------------------+-----+
39
+ | Key | Num |
40
+ +--------------------------+-----+
41
+ | warnings | 0 |
42
+ | ld_warnings | 0 |
43
+ | compile_warnings | 1 |
44
+ | errors | 0 |
45
+ | compile_errors | 0 |
46
+ | file_missing_errors | 0 |
47
+ | undefined_symbols_errors | 0 |
48
+ | duplicate_symbols_errors | 0 |
49
+ | tests_failures | 0 |
50
+ | tests_summary_messages | 0 |
51
+ +--------------------------+-----+
52
+
53
+ +--------------------------------------+--------------------------+
54
+ | compile_warnings 1 |
55
+ +--------------------------------------+--------------------------+
56
+ | FilePath | Reason |
57
+ +--------------------------------------+--------------------------+
58
+ | /YourPath/ViewController.swift:15:20 | string literal is unused |
59
+ +--------------------------------------+--------------------------+
60
+ ```
61
+
62
+ ## Run tests for this plugin
63
+
64
+ To run both the tests, and code style validation, run
65
+
66
+ ```
67
+ rake
68
+ ```
69
+
70
+ To automatically fix many of the styling issues, use
71
+ ```
72
+ rubocop -a
73
+ ```
74
+
75
+ ## Issues and Feedback
76
+
77
+ For any other issues and feedback about this plugin, please submit it to this repository.
78
+
79
+ ## Troubleshooting
80
+
81
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
82
+
83
+ ## Using _fastlane_ Plugins
84
+
85
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
86
+
87
+ ## About _fastlane_
88
+
89
+ _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/build_log_info/version'
2
+
3
+ module Fastlane
4
+ module BuildLogInfo
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::BuildLogInfo.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,97 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/build_log_info_helper'
3
+ require 'json'
4
+
5
+ module Fastlane
6
+ module Actions
7
+ class BuildLogInfoAction < Action
8
+ def self.run(params)
9
+ begin
10
+ path = params[:file_path]
11
+ @json_data = JSON.parse(File.open(path).read)
12
+ rescue => error
13
+ UI.user_error!("JSON File Error:#{error.message}")
14
+ end
15
+
16
+ all_keys = %w[warnings ld_warnings compile_warnings errors
17
+ compile_errors file_missing_errors
18
+ undefined_symbols_errors duplicate_symbols_errors
19
+ tests_failures tests_summary_messages]
20
+
21
+ # summary
22
+ summary_rows = []
23
+ all_keys.each do |key|
24
+ value = @json_data[key].size
25
+
26
+ if value > 0
27
+ summary_rows << [key.to_s.red, value.to_s.red]
28
+ else
29
+ summary_rows << [key, value.to_s.green]
30
+ end
31
+ end
32
+
33
+ # summary
34
+ summary_table = Helper::BuildLogInfoHelper.summary_table(
35
+ title: "Summary",
36
+ headings: %w[Key Num],
37
+ rows: summary_rows
38
+ )
39
+ puts(summary_table)
40
+
41
+ # detail
42
+ all_keys.each do |key|
43
+ rows = []
44
+
45
+ @json_data[key].each do |line|
46
+ rows << [line["file_path"], line["reason"]]
47
+ end
48
+
49
+ title_num = @json_data[key].size
50
+
51
+ # if num is 0 then do not display
52
+ next if title_num == 0
53
+
54
+ # detail table
55
+ summary_table = Helper::BuildLogInfoHelper.summary_table(
56
+ title: "#{key} #{title_num}",
57
+ headings: %w[FilePath Reason],
58
+ rows: rows
59
+ )
60
+ puts(summary_table)
61
+ end
62
+ end
63
+
64
+ def self.description
65
+ "build log information"
66
+ end
67
+
68
+ def self.authors
69
+ ["tarappo"]
70
+ end
71
+
72
+ def self.return_value
73
+ end
74
+
75
+ def self.details
76
+ "build log information"
77
+ end
78
+
79
+ def self.available_options
80
+ [
81
+ FastlaneCore::ConfigItem.new(key: :file_path,
82
+ env_name: 'file_path',
83
+ description: 'Path to result json file. ',
84
+ default_value: Dir['./build/reports/*.json'].last,
85
+ optional: true,
86
+ verify_block: proc do |value|
87
+ raise "Couldn't find file".red unless File.exist?(value)
88
+ end)
89
+ ]
90
+ end
91
+
92
+ def self.is_supported?(platform)
93
+ [:ios].include?(platform)
94
+ end
95
+ end
96
+ end
97
+ end
@@ -0,0 +1,15 @@
1
+ module Fastlane
2
+ module Helper
3
+ class BuildLogInfoHelper
4
+ class << self
5
+ def summary_table(title:, headings:, rows:)
6
+ Terminal::Table.new(
7
+ title: title.to_s.green,
8
+ headings: headings,
9
+ rows: FastlaneCore::PrintTable.transform_output(rows)
10
+ ).to_s
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module BuildLogInfo
3
+ VERSION = "0.1.1"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,189 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-build_log_info
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - tarappo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-07-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: xcpretty-json-formatter
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
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: pry
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: bundler
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
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: rspec_junit_formatter
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: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '='
102
+ - !ruby/object:Gem::Version
103
+ version: 0.49.1
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 0.49.1
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop-require_tools
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: simplecov
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: fastlane
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: 2.100.1
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: 2.100.1
153
+ description:
154
+ email: tarappo@gmail.com
155
+ executables: []
156
+ extensions: []
157
+ extra_rdoc_files: []
158
+ files:
159
+ - LICENSE
160
+ - README.md
161
+ - lib/fastlane/plugin/build_log_info.rb
162
+ - lib/fastlane/plugin/build_log_info/actions/build_log_info_action.rb
163
+ - lib/fastlane/plugin/build_log_info/helper/build_log_info_helper.rb
164
+ - lib/fastlane/plugin/build_log_info/version.rb
165
+ homepage: https://github.com/tarappo/fastlane-plugin-build_log_info
166
+ licenses:
167
+ - MIT
168
+ metadata: {}
169
+ post_install_message:
170
+ rdoc_options: []
171
+ require_paths:
172
+ - lib
173
+ required_ruby_version: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ version: '0'
178
+ required_rubygems_version: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ requirements: []
184
+ rubyforge_project:
185
+ rubygems_version: 2.6.11
186
+ signing_key:
187
+ specification_version: 4
188
+ summary: show build log info
189
+ test_files: []