cocoapods-tj 1.0.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.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +1 -0
  4. data/lib/cocoapods-tj/command/bin/archive.rb +203 -0
  5. data/lib/cocoapods-tj/command/bin/auto.rb +189 -0
  6. data/lib/cocoapods-tj/command/bin/code.rb +198 -0
  7. data/lib/cocoapods-tj/command/bin/imy.rb +45 -0
  8. data/lib/cocoapods-tj/command/bin/init.rb +65 -0
  9. data/lib/cocoapods-tj/command/bin/initHotKey.rb +66 -0
  10. data/lib/cocoapods-tj/command/bin/install.rb +41 -0
  11. data/lib/cocoapods-tj/command/bin/lib/lint.rb +66 -0
  12. data/lib/cocoapods-tj/command/bin/local.rb +142 -0
  13. data/lib/cocoapods-tj/command/bin/repo/update.rb +42 -0
  14. data/lib/cocoapods-tj/command/bin/spec/create.rb +68 -0
  15. data/lib/cocoapods-tj/command/bin/spec/push.rb +114 -0
  16. data/lib/cocoapods-tj/command/bin/update.rb +144 -0
  17. data/lib/cocoapods-tj/command/bin.rb +42 -0
  18. data/lib/cocoapods-tj/command.rb +2 -0
  19. data/lib/cocoapods-tj/config/config.rb +129 -0
  20. data/lib/cocoapods-tj/config/config_asker.rb +49 -0
  21. data/lib/cocoapods-tj/config/config_builder.rb +201 -0
  22. data/lib/cocoapods-tj/config/config_hot_key.rb +102 -0
  23. data/lib/cocoapods-tj/config/config_hot_key_asker.rb +48 -0
  24. data/lib/cocoapods-tj/gem_version.rb +10 -0
  25. data/lib/cocoapods-tj/helpers/Info.plist +0 -0
  26. data/lib/cocoapods-tj/helpers/build_helper.rb +154 -0
  27. data/lib/cocoapods-tj/helpers/build_utils.rb +62 -0
  28. data/lib/cocoapods-tj/helpers/framework.rb +79 -0
  29. data/lib/cocoapods-tj/helpers/framework_builder.rb +391 -0
  30. data/lib/cocoapods-tj/helpers/library.rb +54 -0
  31. data/lib/cocoapods-tj/helpers/library_builder.rb +89 -0
  32. data/lib/cocoapods-tj/helpers/local/loca_llibrary.rb +57 -0
  33. data/lib/cocoapods-tj/helpers/local/local_build_helper.rb +177 -0
  34. data/lib/cocoapods-tj/helpers/local/local_framework.rb +85 -0
  35. data/lib/cocoapods-tj/helpers/local/local_framework_builder.rb +226 -0
  36. data/lib/cocoapods-tj/helpers/local/local_library_builder.rb +91 -0
  37. data/lib/cocoapods-tj/helpers/sources_helper.rb +32 -0
  38. data/lib/cocoapods-tj/helpers/spec_creator.rb +150 -0
  39. data/lib/cocoapods-tj/helpers/spec_files_helper.rb +73 -0
  40. data/lib/cocoapods-tj/helpers/spec_source_creator.rb +189 -0
  41. data/lib/cocoapods-tj/helpers/upload_helper.rb +81 -0
  42. data/lib/cocoapods-tj/helpers.rb +5 -0
  43. data/lib/cocoapods-tj/native/acknowledgements.rb +26 -0
  44. data/lib/cocoapods-tj/native/analyzer.rb +29 -0
  45. data/lib/cocoapods-tj/native/file_accessor.rb +20 -0
  46. data/lib/cocoapods-tj/native/installation_options.rb +21 -0
  47. data/lib/cocoapods-tj/native/installer.rb +106 -0
  48. data/lib/cocoapods-tj/native/linter.rb +26 -0
  49. data/lib/cocoapods-tj/native/path_source.rb +29 -0
  50. data/lib/cocoapods-tj/native/pod_source_installer.rb +18 -0
  51. data/lib/cocoapods-tj/native/pod_target_installer.rb +81 -0
  52. data/lib/cocoapods-tj/native/podfile.rb +91 -0
  53. data/lib/cocoapods-tj/native/podfile_env.rb +37 -0
  54. data/lib/cocoapods-tj/native/podfile_generator.rb +135 -0
  55. data/lib/cocoapods-tj/native/podspec_finder.rb +23 -0
  56. data/lib/cocoapods-tj/native/resolver.rb +202 -0
  57. data/lib/cocoapods-tj/native/sandbox_analyzer.rb +11 -0
  58. data/lib/cocoapods-tj/native/source.rb +35 -0
  59. data/lib/cocoapods-tj/native/sources_manager.rb +18 -0
  60. data/lib/cocoapods-tj/native/specification.rb +10 -0
  61. data/lib/cocoapods-tj/native/target_validator.rb +41 -0
  62. data/lib/cocoapods-tj/native/validator.rb +40 -0
  63. data/lib/cocoapods-tj/native.rb +23 -0
  64. data/lib/cocoapods-tj/source_provider_hook.rb +50 -0
  65. data/lib/cocoapods-tj.rb +2 -0
  66. data/lib/cocoapods_plugin.rb +3 -0
  67. data/spec/command/bin_spec.rb +12 -0
  68. data/spec/spec_helper.rb +50 -0
  69. metadata +182 -0
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cocoapods-tj
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - song
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-12-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: parallel
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: cocoapods
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
+ - !ruby/object:Gem::Dependency
42
+ name: cocoapods-generate
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
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: bundler
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
+ description: ''
84
+ email:
85
+ - song@song.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - LICENSE.txt
91
+ - README.md
92
+ - lib/cocoapods-tj.rb
93
+ - lib/cocoapods-tj/command.rb
94
+ - lib/cocoapods-tj/command/bin.rb
95
+ - lib/cocoapods-tj/command/bin/archive.rb
96
+ - lib/cocoapods-tj/command/bin/auto.rb
97
+ - lib/cocoapods-tj/command/bin/code.rb
98
+ - lib/cocoapods-tj/command/bin/imy.rb
99
+ - lib/cocoapods-tj/command/bin/init.rb
100
+ - lib/cocoapods-tj/command/bin/initHotKey.rb
101
+ - lib/cocoapods-tj/command/bin/install.rb
102
+ - lib/cocoapods-tj/command/bin/lib/lint.rb
103
+ - lib/cocoapods-tj/command/bin/local.rb
104
+ - lib/cocoapods-tj/command/bin/repo/update.rb
105
+ - lib/cocoapods-tj/command/bin/spec/create.rb
106
+ - lib/cocoapods-tj/command/bin/spec/push.rb
107
+ - lib/cocoapods-tj/command/bin/update.rb
108
+ - lib/cocoapods-tj/config/config.rb
109
+ - lib/cocoapods-tj/config/config_asker.rb
110
+ - lib/cocoapods-tj/config/config_builder.rb
111
+ - lib/cocoapods-tj/config/config_hot_key.rb
112
+ - lib/cocoapods-tj/config/config_hot_key_asker.rb
113
+ - lib/cocoapods-tj/gem_version.rb
114
+ - lib/cocoapods-tj/helpers.rb
115
+ - lib/cocoapods-tj/helpers/Info.plist
116
+ - lib/cocoapods-tj/helpers/build_helper.rb
117
+ - lib/cocoapods-tj/helpers/build_utils.rb
118
+ - lib/cocoapods-tj/helpers/framework.rb
119
+ - lib/cocoapods-tj/helpers/framework_builder.rb
120
+ - lib/cocoapods-tj/helpers/library.rb
121
+ - lib/cocoapods-tj/helpers/library_builder.rb
122
+ - lib/cocoapods-tj/helpers/local/loca_llibrary.rb
123
+ - lib/cocoapods-tj/helpers/local/local_build_helper.rb
124
+ - lib/cocoapods-tj/helpers/local/local_framework.rb
125
+ - lib/cocoapods-tj/helpers/local/local_framework_builder.rb
126
+ - lib/cocoapods-tj/helpers/local/local_library_builder.rb
127
+ - lib/cocoapods-tj/helpers/sources_helper.rb
128
+ - lib/cocoapods-tj/helpers/spec_creator.rb
129
+ - lib/cocoapods-tj/helpers/spec_files_helper.rb
130
+ - lib/cocoapods-tj/helpers/spec_source_creator.rb
131
+ - lib/cocoapods-tj/helpers/upload_helper.rb
132
+ - lib/cocoapods-tj/native.rb
133
+ - lib/cocoapods-tj/native/acknowledgements.rb
134
+ - lib/cocoapods-tj/native/analyzer.rb
135
+ - lib/cocoapods-tj/native/file_accessor.rb
136
+ - lib/cocoapods-tj/native/installation_options.rb
137
+ - lib/cocoapods-tj/native/installer.rb
138
+ - lib/cocoapods-tj/native/linter.rb
139
+ - lib/cocoapods-tj/native/path_source.rb
140
+ - lib/cocoapods-tj/native/pod_source_installer.rb
141
+ - lib/cocoapods-tj/native/pod_target_installer.rb
142
+ - lib/cocoapods-tj/native/podfile.rb
143
+ - lib/cocoapods-tj/native/podfile_env.rb
144
+ - lib/cocoapods-tj/native/podfile_generator.rb
145
+ - lib/cocoapods-tj/native/podspec_finder.rb
146
+ - lib/cocoapods-tj/native/resolver.rb
147
+ - lib/cocoapods-tj/native/sandbox_analyzer.rb
148
+ - lib/cocoapods-tj/native/source.rb
149
+ - lib/cocoapods-tj/native/sources_manager.rb
150
+ - lib/cocoapods-tj/native/specification.rb
151
+ - lib/cocoapods-tj/native/target_validator.rb
152
+ - lib/cocoapods-tj/native/validator.rb
153
+ - lib/cocoapods-tj/source_provider_hook.rb
154
+ - lib/cocoapods_plugin.rb
155
+ - spec/command/bin_spec.rb
156
+ - spec/spec_helper.rb
157
+ homepage: https://github.com/songpanfei/cocaopods-tj
158
+ licenses:
159
+ - MIT
160
+ metadata: {}
161
+ post_install_message:
162
+ rdoc_options: []
163
+ require_paths:
164
+ - lib
165
+ required_ruby_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ">="
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ required_rubygems_version: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ requirements: []
176
+ rubygems_version: 3.3.26
177
+ signing_key:
178
+ specification_version: 4
179
+ summary: ''
180
+ test_files:
181
+ - spec/command/bin_spec.rb
182
+ - spec/spec_helper.rb