podfileDep 1.1.4 → 2.0.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.
data/podfileDep.gemspec CHANGED
@@ -5,12 +5,12 @@ require_relative "lib/podfileDep/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "podfileDep"
7
7
  spec.version = PodfileDep::VERSION
8
- spec.authors = ["WANGSHUAIPENG"]
8
+ spec.authors = ["王帅朋"]
9
9
  spec.email = ["wsp810@163.com"]
10
10
 
11
- spec.summary = " Write a short summary, because RubyGems requires one."
12
- spec.description = "iOS 端Podfile文件托管"
13
- spec.homepage = "https://gitee.com/sourceiOS/podfileDep"
11
+ spec.summary = "iOS端 依赖库使用yaml文件管理"
12
+ spec.description = "iOS 依赖库使用yaml文件管理,并提供其他扩展功能"
13
+ spec.homepage = "https://gitee.com/sourceiOS/podfileDepDemo"
14
14
  spec.required_ruby_version = ">= 2.6.0"
15
15
 
16
16
  # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
@@ -31,7 +31,8 @@ Gem::Specification.new do |spec|
31
31
  spec.require_paths = ["lib"]
32
32
 
33
33
  # Uncomment to register a new dependency of your gem
34
- # spec.add_dependency "example-gem", "~> 1.0"
34
+ spec.add_dependency "cocoapods"
35
+ spec.add_dependency "xcodeproj"
35
36
 
36
37
  # For more information and examples about making a new gem, check out our
37
38
  # guide at: https://bundler.io/guides/creating_gem.html
metadata CHANGED
@@ -1,16 +1,44 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podfileDep
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - WANGSHUAIPENG
7
+ - 王帅朋
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-08 00:00:00.000000000 Z
12
- dependencies: []
13
- description: iOS 端Podfile文件托管
11
+ date: 2023-06-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cocoapods
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: xcodeproj
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: iOS端 依赖库使用yaml文件管理,并提供其他扩展功能
14
42
  email:
15
43
  - wsp810@163.com
16
44
  executables: []
@@ -20,18 +48,30 @@ files:
20
48
  - CHANGELOG.md
21
49
  - CODE_OF_CONDUCT.md
22
50
  - Gemfile
23
- - Gemfile.lock
24
51
  - README.md
25
52
  - Rakefile
53
+ - lib/cocoapods_plugin.rb
54
+ - lib/old/podfileDep.rb
26
55
  - lib/podfileDep.rb
56
+ - lib/podfileDep/check/dep.rb
57
+ - lib/podfileDep/check/import.rb
58
+ - lib/podfileDep/check/item.rb
59
+ - lib/podfileDep/check/module.rb
60
+ - lib/podfileDep/check/xcodeproj.rb
61
+ - lib/podfileDep/constants.rb
62
+ - lib/podfileDep/indirect/indirect.rb
63
+ - lib/podfileDep/modify/modify_code.rb
64
+ - lib/podfileDep/podfilelock.rb
65
+ - lib/podfileDep/reference/project.rb
66
+ - lib/podfileDep/reference/unused.rb
27
67
  - lib/podfileDep/version.rb
68
+ - lib/podfileDep/yaml/yaml_dep.rb
28
69
  - podfileDep.gemspec
29
70
  - release.sh
30
- - sig/podfileDep.rbs
31
- homepage: https://gitee.com/sourceiOS/podfileDep
71
+ homepage: https://gitee.com/sourceiOS/podfileDepDemo
32
72
  licenses: []
33
73
  metadata:
34
- homepage_uri: https://gitee.com/sourceiOS/podfileDep
74
+ homepage_uri: https://gitee.com/sourceiOS/podfileDepDemo
35
75
  source_code_uri: https://gitee.com/sourceiOS/podfileDep
36
76
  changelog_uri: https://gitee.com/sourceiOS/podfileDep
37
77
  post_install_message:
@@ -52,5 +92,5 @@ requirements: []
52
92
  rubygems_version: 3.4.6
53
93
  signing_key:
54
94
  specification_version: 4
55
- summary: Write a short summary, because RubyGems requires one.
95
+ summary: iOS端 依赖库使用yaml文件管理
56
96
  test_files: []
data/Gemfile.lock DELETED
@@ -1,19 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- podfileDep (1.1.1)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- rake (13.0.6)
10
-
11
- PLATFORMS
12
- x86_64-darwin-22
13
-
14
- DEPENDENCIES
15
- podfileDep!
16
- rake (~> 13.0)
17
-
18
- BUNDLED WITH
19
- 2.3.26
data/sig/podfileDep.rbs DELETED
@@ -1,4 +0,0 @@
1
- module PodfileDep
2
- VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
- end