check_all_depencies 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
+ SHA256:
3
+ metadata.gz: 5c9f9b850f92c9112c949f9c2545a0641f526e3918654e5b6cdf9445410080f2
4
+ data.tar.gz: a5b6cc91bfe9acc939a111d9308457958545cb2e98533eec096c2756fcd1478c
5
+ SHA512:
6
+ metadata.gz: 9678d91e70320b2bf66d9bc1b63f7e63163b25a67292b08db98c2867722526dad639bc543d2136ee52faa920c22ec6a80585c1a7d8e7556082656d916bab700f
7
+ data.tar.gz: 2e37394216016fa1c07412a62ae123d24979762686958ec8f6503caf9140c85d2a19a372d3da25ec9a5bee1aa802bf7969cb764df3f2715476b468a25492ed92
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at baojun.wang@huolala.cn. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in check_all_depencies.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 ITxiansheng
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
13
+ all 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
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # CheckAllDepencies
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/check_all_depencies`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'check_all_depencies'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install check_all_depencies
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/check_all_depencies. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the CheckAllDepencies project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/check_all_depencies/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "check_all_depencies"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,20 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = "check_all_depencies"
3
+ spec.version = "0.1.0"
4
+ spec.authors = ["Your Name"]
5
+ spec.email = ["your.email@example.com"]
6
+
7
+ spec.summary = %q{Short summary of your gem}
8
+ spec.description = %q{Long description of your gem}
9
+ spec.homepage = "http://example.com/gem_homepage"
10
+ spec.license = "MIT"
11
+
12
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
13
+ spec.bindir = "bin"
14
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
15
+ spec.require_paths = ["lib"]
16
+
17
+ # 添加依赖
18
+ spec.add_dependency "bundler", "~> 2.0"
19
+ spec.add_dependency "rake", "~> 13.0"
20
+ end
@@ -0,0 +1,3 @@
1
+ module CheckAllDepencies
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,212 @@
1
+ require "check_all_depencies/version"
2
+
3
+ module CheckAllDepencies
4
+ class Error < StandardError; end
5
+ #!/usr/bin/env ruby
6
+ # Analyzes the Podfile.lock content to extract pod dependencies
7
+ def analyze_podfile_lock(podfile_lock_content)
8
+ unless podfile_lock_content.is_a?(String)
9
+ raise ArgumentError, 'podfile_lock_content must be a string.'
10
+ end
11
+
12
+ pods_section_match = podfile_lock_content.match(/^PODS:\n(.*?)(?=\n\n|\z)/m)
13
+ if pods_section_match
14
+ pods_section_content = pods_section_match[1]
15
+ pods_lines = pods_section_content.split("\n")
16
+ pods_lines.map(&:strip)
17
+ else
18
+ raise 'PODS section not found in the provided Podfile.lock content.'
19
+ end
20
+ end
21
+
22
+ # Reads the local Podfile.lock content
23
+ def read_local_podfile_lock(file_path)
24
+ unless File.exist?(file_path)
25
+ raise "File not found: #{file_path}"
26
+ end
27
+
28
+ podfile_lock_content = File.read(file_path)
29
+ analyze_podfile_lock(podfile_lock_content)
30
+ end
31
+
32
+ # Extracts unique specs from dependencies
33
+ def extract_unique_dependencies(pods)
34
+ unless pods.is_a?(Array)
35
+ raise ArgumentError, 'Input must be an array.'
36
+ end
37
+
38
+ return [] if pods.empty?
39
+
40
+ unique_repositories = pods.each_with_object([]) do |dependency, unique|
41
+ repo_name = dependency.split('(').first.strip
42
+ cleaned_repo_name = repo_name.gsub(/- /, '')
43
+ unique << cleaned_repo_name unless unique.include?(cleaned_repo_name)
44
+ end
45
+
46
+ unique_repositories
47
+ end
48
+
49
+ # Finds the shortest paths for dependencies
50
+ def find_shortest_paths(paths)
51
+ raise ArgumentError, 'Input must be an array' unless paths.is_a?(Array)
52
+ return [] if paths.empty?
53
+ raise ArgumentError, 'All elements in the array must be strings' unless paths.all? { |path| path.is_a?(String) }
54
+
55
+ shortest_paths = []
56
+ paths.each do |path|
57
+ is_shortest = true
58
+ paths.each do |other_path|
59
+ if path != other_path && other_path.start_with?(path)
60
+ is_shortest = false
61
+ break
62
+ end
63
+ end
64
+ shortest_paths << path if is_shortest
65
+ end
66
+ shortest_paths
67
+ end
68
+
69
+ # Builds all subspecs dependencies for a repo
70
+ def generate_repo_subspecs(repo,unique_repositories)
71
+ repo_subspecs = {}
72
+ unique_repositories.select { |dependency| dependency.start_with?(repo) }.each do |dependency|
73
+ if repo_subspecs.key?(repo)
74
+ repo_subspecs[repo] << dependency
75
+ else
76
+ repo_subspecs[repo] = [dependency]
77
+ end
78
+ end
79
+ return repo_subspecs
80
+ end
81
+
82
+ # Generates Podfile entry for path dependency
83
+ def generate_path_podfile_entry(lib,subspecs, base_path)
84
+ sub_specs = subspecs.map { |path| path.split('/', 2).last }.uniq
85
+ return "pod '#{lib}', :path => '#{base_path}'" if sub_specs.length <= 1
86
+ podfile_entry = "pod '#{lib}', :path => '#{base_path}', :subspecs => [\n"
87
+ sub_specs.each_with_index do |path, index|
88
+ subspec = path.gsub("#{lib}/", '')
89
+ podfile_entry << " '#{subspec}'"
90
+ podfile_entry << "," unless index == sub_specs.length - 1
91
+ podfile_entry << "\n"
92
+ end
93
+ podfile_entry << "]"
94
+ podfile_entry
95
+ end
96
+
97
+ # Generates Podfile entry for branch dependency
98
+ def generate_branch_podfile_entry(lib,subspecs, git_url, branch)
99
+ sub_specs = subspecs.map { |path| path.split('/', 2).last }.uniq
100
+ return "pod '#{lib}', :git => '#{git_url}', :branch => '#{branch}'" if sub_specs.length <= 1
101
+ podfile_entry = "pod '#{lib}', :git => '#{git_url}', :branch => '#{branch}', :subspecs => [\n"
102
+ sub_specs.each_with_index do |path, index|
103
+ subspec = path.gsub("#{lib}/", '')
104
+ podfile_entry << " '#{subspec}'"
105
+ podfile_entry << "," unless index == sub_specs.length - 1
106
+ podfile_entry << "\n"
107
+ end
108
+ podfile_entry << "]"
109
+ podfile_entry
110
+ end
111
+
112
+ # Generates all branch dependencies
113
+ def generate_map_branch_podfiles(lockPath, repo_configs)
114
+ raise ArgumentError, 'lockPath must be a string.' unless lockPath.is_a?(String)
115
+ raise ArgumentError, 'repo_configs must be a hash.' unless repo_configs.is_a?(Hash)
116
+
117
+ dependencies = read_local_podfile_lock(lockPath)
118
+ unique_dependencies = extract_unique_dependencies(dependencies)
119
+ # Throws an exception if unique_dependencies is empty
120
+ raise 'No unique dependencies found. Please check your Podfile.lock content and repo_configs.' if unique_dependencies.empty?
121
+
122
+ puts "====branch dependencies===="
123
+ podfile_entrys = []
124
+ repo_configs.each do |key, value|
125
+ next unless value.is_a?(Hash) && value.key?("git_url") && value.key?("branch")
126
+
127
+ git_url = value["git_url"]
128
+ branch = value["branch"]
129
+ repo_subspecs = generate_repo_subspecs(key, unique_dependencies)
130
+ repo_shortest_subspecs = find_shortest_paths(repo_subspecs[key])
131
+ # Generates Podfile entry
132
+ podfile_entry = generate_branch_podfile_entry(key, repo_shortest_subspecs, git_url, branch)
133
+ podfile_entrys << podfile_entry
134
+ end
135
+ puts podfile_entrys.join("\n")
136
+ podfile_entrys.join("\n")
137
+ end
138
+
139
+ # Generates all path dependencies
140
+ def generate_map_path_podfiles(lockPath, repo_configs)
141
+ raise ArgumentError, 'lockPath must be a string.' unless lockPath.is_a?(String)
142
+ raise ArgumentError, 'repo_configs must be a hash.' unless repo_configs.is_a?(Hash)
143
+
144
+ pods = read_local_podfile_lock(lockPath)
145
+ unique_dependencies = extract_unique_dependencies(pods)
146
+
147
+ # Throws an exception if unique_dependencies is empty
148
+ raise 'No unique dependencies found. Please check your Podfile.lock content and repo_configs.' if unique_dependencies.empty?
149
+
150
+ puts "====path dependencies===="
151
+ podfile_entrys = []
152
+ repo_configs.each do |key, value|
153
+ next unless value.is_a?(Hash) && value.key?("path")
154
+
155
+ path = value["path"]
156
+ repo_subspecs = generate_repo_subspecs(key, unique_dependencies)
157
+ repo_shortest_subspecs = find_shortest_paths(repo_subspecs[key])
158
+ # Generates Podfile entry
159
+ podfile_entry = generate_path_podfile_entry(key, repo_shortest_subspecs, path)
160
+ podfile_entrys << podfile_entry
161
+ end
162
+ puts podfile_entrys.join("\n")
163
+ podfile_entrys.join("\n")
164
+ end
165
+
166
+ require 'optparse'
167
+ require 'json'
168
+
169
+ options = {}
170
+ OptionParser.new do |opts|
171
+ opts.banner = "Usage: ruby MapHelper.rb --lockPath LOCK_PATH --depWay DEP_WAY --configPath CONFIG_PATH"
172
+
173
+ opts.on("--lockPath LOCK_PATH", "Specify the Podfile.lock path") do |lockPath|
174
+ options[:lockPath] = lockPath
175
+ end
176
+
177
+ opts.on("--depWay DEP_WAY", "Specify the depWay parameter (path or branch)") do |depWay|
178
+ options[:depWay] = depWay
179
+ end
180
+
181
+ # New option to specify the path to repo_configs.txt
182
+ opts.on("--configPath CONFIG_PATH", "Specify the path to repo_configs") do |configPath|
183
+ options[:configPath] = configPath
184
+ end
185
+ end.parse!
186
+
187
+ # Check if all required arguments were provided
188
+ if options[:lockPath].nil? || options[:depWay].nil? || options[:configPath].nil?
189
+ puts "Please provide lockPath, depWay, and configPath parameters.\n you can run:\n ruby MapHelper.rb --help "
190
+ exit
191
+ end
192
+
193
+ # Function to read and parse the repo_configs.txt file
194
+ def read_repo_configs(config_path)
195
+ content = File.read(config_path)
196
+ eval(content) # Using eval to parse the Ruby hash from the file, be cautious with its use!
197
+ rescue
198
+ puts "Failed to read or parse the repo_configs from #{config_path}"
199
+ exit
200
+ end
201
+
202
+ repo_configs = read_repo_configs(options[:configPath])
203
+
204
+ # Calls before pod install complete
205
+ if options[:depWay] == "path"
206
+ generate_map_path_podfiles(options[:lockPath], repo_configs)
207
+ elsif options[:depWay] == "branch"
208
+ generate_map_branch_podfiles(options[:lockPath], repo_configs)
209
+ else
210
+ puts "Invalid argument. Please provide 'path' or 'branch'."
211
+ end
212
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: check_all_depencies
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Your Name
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-03-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.0'
41
+ description: Long description of your gem
42
+ email:
43
+ - your.email@example.com
44
+ executables:
45
+ - console
46
+ - setup
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".gitignore"
51
+ - CODE_OF_CONDUCT.md
52
+ - Gemfile
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - bin/console
57
+ - bin/setup
58
+ - check_all_depencies.gemspec
59
+ - lib/check_all_depencies.rb
60
+ - lib/check_all_depencies/version.rb
61
+ homepage: http://example.com/gem_homepage
62
+ licenses:
63
+ - MIT
64
+ metadata: {}
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubygems_version: 3.0.3.1
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: Short summary of your gem
84
+ test_files: []