cocoapods-jxedt 0.0.9
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 +7 -0
- data/LICENSE.txt +22 -0
- data/README.md +86 -0
- data/lib/cocoapods-jxedt/binary/Intergation.rb +303 -0
- data/lib/cocoapods-jxedt/binary/config.rb +139 -0
- data/lib/cocoapods-jxedt/binary/helper/names.rb +78 -0
- data/lib/cocoapods-jxedt/binary/helper/podfile_options.rb +116 -0
- data/lib/cocoapods-jxedt/binary/helper/prebuild_sandbox.rb +18 -0
- data/lib/cocoapods-jxedt/binary/helper/target_definition.rb +34 -0
- data/lib/cocoapods-jxedt/binary/hooks/CocoapodsJxedtHook.rb +25 -0
- data/lib/cocoapods-jxedt/binary/hooks/post_install.rb +35 -0
- data/lib/cocoapods-jxedt/binary/hooks/pre_install.rb +61 -0
- data/lib/cocoapods-jxedt/binary/main.rb +3 -0
- data/lib/cocoapods-jxedt/binary/pod-room/xcodebuild_command.rb +265 -0
- data/lib/cocoapods-jxedt/binary/pod-room/xcodebuild_raw.rb +68 -0
- data/lib/cocoapods-jxedt/binary/podfile_dsl.rb +26 -0
- data/lib/cocoapods-jxedt/binary/prebuild.rb +210 -0
- data/lib/cocoapods-jxedt/binary/targets/pod_target.rb +103 -0
- data/lib/cocoapods-jxedt/command/header/header.rb +157 -0
- data/lib/cocoapods-jxedt/command/jxedt.rb +40 -0
- data/lib/cocoapods-jxedt/command/options/options.rb +33 -0
- data/lib/cocoapods-jxedt/command.rb +1 -0
- data/lib/cocoapods-jxedt/gem_version.rb +3 -0
- data/lib/cocoapods-jxedt/tool.rb +12 -0
- data/lib/cocoapods-jxedt.rb +1 -0
- data/lib/cocoapods_plugin.rb +3 -0
- metadata +122 -0
metadata
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-jxedt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.9
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- guojiashuang
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-04-18 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: 1.5.0
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.5.0
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: bundler
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :development
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rake
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
description: A CocoaPods plugin to integrate pods in form of prebuilt frameworks,
|
62
|
+
not source code. It supports multiple environments (Debug/Release), supports xcframework,
|
63
|
+
source code and binary switching. In addition, it provides a command for quickly
|
64
|
+
modifying header files to help developers support modules.
|
65
|
+
email:
|
66
|
+
- guojiashuang@58.com
|
67
|
+
executables: []
|
68
|
+
extensions: []
|
69
|
+
extra_rdoc_files: []
|
70
|
+
files:
|
71
|
+
- LICENSE.txt
|
72
|
+
- README.md
|
73
|
+
- lib/cocoapods-jxedt.rb
|
74
|
+
- lib/cocoapods-jxedt/binary/Intergation.rb
|
75
|
+
- lib/cocoapods-jxedt/binary/config.rb
|
76
|
+
- lib/cocoapods-jxedt/binary/helper/names.rb
|
77
|
+
- lib/cocoapods-jxedt/binary/helper/podfile_options.rb
|
78
|
+
- lib/cocoapods-jxedt/binary/helper/prebuild_sandbox.rb
|
79
|
+
- lib/cocoapods-jxedt/binary/helper/target_definition.rb
|
80
|
+
- lib/cocoapods-jxedt/binary/hooks/CocoapodsJxedtHook.rb
|
81
|
+
- lib/cocoapods-jxedt/binary/hooks/post_install.rb
|
82
|
+
- lib/cocoapods-jxedt/binary/hooks/pre_install.rb
|
83
|
+
- lib/cocoapods-jxedt/binary/main.rb
|
84
|
+
- lib/cocoapods-jxedt/binary/pod-room/xcodebuild_command.rb
|
85
|
+
- lib/cocoapods-jxedt/binary/pod-room/xcodebuild_raw.rb
|
86
|
+
- lib/cocoapods-jxedt/binary/podfile_dsl.rb
|
87
|
+
- lib/cocoapods-jxedt/binary/prebuild.rb
|
88
|
+
- lib/cocoapods-jxedt/binary/targets/pod_target.rb
|
89
|
+
- lib/cocoapods-jxedt/command.rb
|
90
|
+
- lib/cocoapods-jxedt/command/header/header.rb
|
91
|
+
- lib/cocoapods-jxedt/command/jxedt.rb
|
92
|
+
- lib/cocoapods-jxedt/command/options/options.rb
|
93
|
+
- lib/cocoapods-jxedt/gem_version.rb
|
94
|
+
- lib/cocoapods-jxedt/tool.rb
|
95
|
+
- lib/cocoapods_plugin.rb
|
96
|
+
homepage: http://igit.58corp.com/com.wuba.jxedt.ios/cocoapods-jxedt
|
97
|
+
licenses:
|
98
|
+
- MIT
|
99
|
+
metadata: {}
|
100
|
+
post_install_message:
|
101
|
+
rdoc_options: []
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
requirements: []
|
115
|
+
rubygems_version: 3.1.2
|
116
|
+
signing_key:
|
117
|
+
specification_version: 4
|
118
|
+
summary: A CocoaPods plugin to integrate pods in form of prebuilt frameworks, not
|
119
|
+
source code. It supports multiple environments (Debug/Release), supports xcframework,
|
120
|
+
source code and binary switching. In addition, it provides a command for quickly
|
121
|
+
modifying header files to help developers support modules.
|
122
|
+
test_files: []
|