cocoapods-imy-bin 0.2.7 → 0.3.1.2
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 +4 -4
- data/README.md +0 -453
- data/lib/cocoapods-imy-bin/command/bin/archive.rb +43 -5
- data/lib/cocoapods-imy-bin/command/bin/auto.rb +22 -15
- data/lib/cocoapods-imy-bin/command/bin/dup.rb +78 -0
- data/lib/cocoapods-imy-bin/config/config.rb +1 -1
- data/lib/cocoapods-imy-bin/config/config_builder.rb +39 -2
- data/lib/cocoapods-imy-bin/gem_version.rb +1 -1
- data/lib/cocoapods-imy-bin/helpers.rb +1 -0
- data/lib/cocoapods-imy-bin/helpers/Info.plist +0 -0
- data/lib/cocoapods-imy-bin/helpers/build_helper.rb +15 -7
- data/lib/cocoapods-imy-bin/helpers/build_utils.rb +63 -0
- data/lib/cocoapods-imy-bin/helpers/framework.rb +25 -2
- data/lib/cocoapods-imy-bin/helpers/framework_builder.rb +165 -54
- data/lib/cocoapods-imy-bin/helpers/library.rb +2 -2
- data/lib/cocoapods-imy-bin/helpers/sources_helper.rb +5 -2
- data/lib/cocoapods-imy-bin/helpers/spec_source_creator.rb +65 -8
- data/lib/cocoapods-imy-bin/helpers/upload_helper.rb +8 -3
- data/lib/cocoapods-imy-bin/native.rb +4 -0
- data/lib/cocoapods-imy-bin/native/analyzer.rb +2 -0
- data/lib/cocoapods-imy-bin/native/file_accessor.rb +28 -0
- data/lib/cocoapods-imy-bin/native/installer.rb +22 -2
- data/lib/cocoapods-imy-bin/native/pod_target_installer.rb +94 -0
- data/lib/cocoapods-imy-bin/native/podfile_generator.rb +11 -2
- data/lib/cocoapods-imy-bin/native/target_validator.rb +41 -0
- data/lib/cocoapods-imy-bin/native/validator.rb +1 -38
- data/lib/cocoapods-imy-bin/source_provider_hook.rb +35 -23
- metadata +12 -12
- data/lib/cocoapods-imy-bin/command/bin/local.rb +0 -156
- data/lib/cocoapods-imy-bin/helpers/local/loca_llibrary.rb +0 -57
- data/lib/cocoapods-imy-bin/helpers/local/local_build_helper.rb +0 -146
- data/lib/cocoapods-imy-bin/helpers/local/local_framework.rb +0 -65
- data/lib/cocoapods-imy-bin/helpers/local/local_framework_builder.rb +0 -174
- data/lib/cocoapods-imy-bin/helpers/local/local_library_builder.rb +0 -92
@@ -47,14 +47,19 @@ module CBin
|
|
47
47
|
def curl_zip
|
48
48
|
zip_file = "#{CBin::Config::Builder.instance.library_file(@spec)}.zip"
|
49
49
|
res = File.exist?(zip_file)
|
50
|
-
|
50
|
+
unless res
|
51
|
+
zip_file = CBin::Config::Builder.instance.framework_zip_file(@spec) + ".zip"
|
52
|
+
res = File.exist?(zip_file)
|
53
|
+
end
|
54
|
+
if res
|
55
|
+
print <<EOF
|
51
56
|
上传二进制文件
|
52
57
|
curl #{CBin.config.binary_upload_url} -F "name=#{@spec.name}" -F "version=#{@spec.version}" -F "annotate=#{@spec.name}_#{@spec.version}_log" -F "file=@#{zip_file}"
|
53
58
|
EOF
|
54
|
-
|
59
|
+
`curl #{CBin.config.binary_upload_url} -F "name=#{@spec.name}" -F "version=#{@spec.version}" -F "annotate=#{@spec.name}_#{@spec.version}_log" -F "file=@#{zip_file}"` if res
|
60
|
+
end
|
55
61
|
|
56
62
|
res
|
57
|
-
|
58
63
|
end
|
59
64
|
|
60
65
|
|
@@ -16,4 +16,8 @@ if Pod.match_version?('~> 1.4')
|
|
16
16
|
require 'cocoapods-imy-bin/native/acknowledgements'
|
17
17
|
require 'cocoapods-imy-bin/native/sandbox_analyzer'
|
18
18
|
require 'cocoapods-imy-bin/native/podspec_finder'
|
19
|
+
require 'cocoapods-imy-bin/native/file_accessor'
|
20
|
+
require 'cocoapods-imy-bin/native/pod_target_installer'
|
21
|
+
require 'cocoapods-imy-bin/native/target_validator'
|
22
|
+
|
19
23
|
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'macho'
|
2
|
+
require 'cocoapods'
|
3
|
+
|
4
|
+
module Pod
|
5
|
+
class Sandbox
|
6
|
+
class FileAccessor
|
7
|
+
|
8
|
+
# swift动态库 需要设置为true
|
9
|
+
def dynamic_binary?(binary)
|
10
|
+
@cached_dynamic_binary_results ||= {}
|
11
|
+
return @cached_dynamic_binary_results[binary] unless @cached_dynamic_binary_results[binary].nil?
|
12
|
+
return false unless binary.file?
|
13
|
+
|
14
|
+
@cached_dynamic_binary_results[binary] = MachO.open(binary).dylib?
|
15
|
+
rescue MachO::MachOError
|
16
|
+
@cached_dynamic_binary_results[binary] = true
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
# def expanded_paths(patterns, options = {})
|
21
|
+
# return [] if patterns.empty?
|
22
|
+
# path_list.glob(patterns, options).flatten.compact.uniq
|
23
|
+
# end
|
24
|
+
|
25
|
+
#-----------------------------------------------------------------------#
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
require 'cocoapods/installer/project_cache/target_metadata.rb'
|
3
2
|
require 'parallel'
|
4
3
|
require 'cocoapods'
|
4
|
+
require 'xcodeproj'
|
5
5
|
require 'cocoapods-imy-bin/native/pod_source_installer'
|
6
6
|
|
7
7
|
module Pod
|
@@ -93,6 +93,26 @@ module Pod
|
|
93
93
|
end
|
94
94
|
end
|
95
95
|
end
|
96
|
+
|
97
|
+
alias old_write_lockfiles write_lockfiles
|
98
|
+
def write_lockfiles
|
99
|
+
old_write_lockfiles
|
100
|
+
if File.exist?('Podfile_local')
|
101
|
+
|
102
|
+
project = Xcodeproj::Project.open(config.sandbox.project_path)
|
103
|
+
#获取主group
|
104
|
+
group = project.main_group
|
105
|
+
group.set_source_tree('SOURCE_ROOT')
|
106
|
+
#向group中添加 文件引用
|
107
|
+
file_ref = group.new_reference(config.sandbox.root + '../Podfile_local')
|
108
|
+
#podfile_local排序
|
109
|
+
podfile_local_group = group.children.last
|
110
|
+
group.children.pop
|
111
|
+
group.children.unshift(podfile_local_group)
|
112
|
+
#保存
|
113
|
+
project.save
|
114
|
+
end
|
115
|
+
end
|
96
116
|
end
|
97
117
|
|
98
118
|
module Downloader
|
@@ -0,0 +1,94 @@
|
|
1
|
+
module Pod
|
2
|
+
class Installer
|
3
|
+
class Xcode
|
4
|
+
class PodsProjectGenerator
|
5
|
+
# Creates the target for the Pods libraries in the Pods project and the
|
6
|
+
# relative support files.
|
7
|
+
#
|
8
|
+
class PodTargetInstaller < TargetInstaller
|
9
|
+
require 'cocoapods/installer/xcode/pods_project_generator/app_host_installer'
|
10
|
+
|
11
|
+
# Adds a shell script phase, intended only for library targets that contain swift,
|
12
|
+
# to copy the ObjC compatibility header (the -Swift.h file that the swift compiler generates)
|
13
|
+
# to the built products directory. Additionally, the script phase copies the module map, appending a `.Swift`
|
14
|
+
# submodule that references the (moved) compatibility header. Since the module map has been moved, the umbrella header
|
15
|
+
# is _also_ copied, so that it is sitting next to the module map. This is necessary for a successful archive build.
|
16
|
+
#
|
17
|
+
# @param [PBXNativeTarget] native_target
|
18
|
+
# the native target to add the Swift static library script phase into.
|
19
|
+
#
|
20
|
+
# @return [Void]
|
21
|
+
#
|
22
|
+
alias old_add_swift_library_compatibility_header_phase add_swift_library_compatibility_header_phase
|
23
|
+
|
24
|
+
def add_swift_library_compatibility_header_phase(native_target)
|
25
|
+
UI.warn("========= swift add_swift_library_compatibility_header_phase")
|
26
|
+
if $ARGV[1] == "auto"
|
27
|
+
UI.warn("========= auto swift add_swift_library_compatibility_header_phase")
|
28
|
+
|
29
|
+
if custom_module_map
|
30
|
+
raise Informative, 'Using Swift static libraries with custom module maps is currently not supported. ' \
|
31
|
+
"Please build `#{target.label}` as a framework or remove the custom module map."
|
32
|
+
end
|
33
|
+
|
34
|
+
build_phase = native_target.new_shell_script_build_phase('Copy generated compatibility header')
|
35
|
+
|
36
|
+
relative_module_map_path = target.module_map_path.relative_path_from(target.sandbox.root)
|
37
|
+
relative_umbrella_header_path = target.umbrella_header_path.relative_path_from(target.sandbox.root)
|
38
|
+
|
39
|
+
build_phase.shell_script = <<-SH.strip_heredoc
|
40
|
+
COMPATIBILITY_HEADER_PATH="${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h"
|
41
|
+
MODULE_MAP_PATH="${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap"
|
42
|
+
|
43
|
+
ditto "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h" "${COMPATIBILITY_HEADER_PATH}"
|
44
|
+
ditto "${PODS_ROOT}/#{relative_module_map_path}" "${MODULE_MAP_PATH}"
|
45
|
+
ditto "${PODS_ROOT}/#{relative_umbrella_header_path}" "${BUILT_PRODUCTS_DIR}"
|
46
|
+
|
47
|
+
COPY_PATH="${PODS_CONFIGURATION_BUILD_DIR}/${PRODUCT_MODULE_NAME}"
|
48
|
+
UMBRELLA_PATH="${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}-umbrella.h"
|
49
|
+
SWIFTMODULE_PATH="${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.swiftmodule"
|
50
|
+
|
51
|
+
ditto "${MODULE_MAP_PATH}" "${PODS_CONFIGURATION_BUILD_DIR}/${PRODUCT_MODULE_NAME}/${PRODUCT_MODULE_NAME}.modulemap"
|
52
|
+
ditto "${COMPATIBILITY_HEADER_PATH}" "${COPY_PATH}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h"
|
53
|
+
ditto "${COMPATIBILITY_HEADER_PATH}" "${COPY_PATH}"
|
54
|
+
ditto "${UMBRELLA_PATH}" "${COPY_PATH}"
|
55
|
+
ditto "${SWIFTMODULE_PATH}" "${COPY_PATH}/${PRODUCT_MODULE_NAME}.swiftmodule"
|
56
|
+
ditto "${SWIFTMODULE_PATH}" "${COPY_PATH}/${PRODUCT_MODULE_NAME}.swiftmodule"
|
57
|
+
|
58
|
+
if [ ${PRODUCT_MODULE_NAME} != ${PRODUCT_NAME} ] ; then
|
59
|
+
ditto "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}-umbrella.h" "${COPY_PATH}"
|
60
|
+
ditto "${COPY_PATH}" "${PODS_CONFIGURATION_BUILD_DIR}/${PRODUCT_NAME}"
|
61
|
+
fi
|
62
|
+
|
63
|
+
MODULE_MAP_SEARCH_PATH = "${PODS_CONFIGURATION_BUILD_DIR}/${PRODUCT_MODULE_NAME}/${PRODUCT_MODULE_NAME}.modulemap"
|
64
|
+
|
65
|
+
if [${MODULE_MAP_PATH} != ${MODULE_MAP_SEARCH_PATH}] ; then
|
66
|
+
printf "\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\"${COPY_PATH}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\\"\\n requires objc\\n}\\n" >> "${MODULE_MAP_SEARCH_PATH}"
|
67
|
+
fi
|
68
|
+
|
69
|
+
printf "\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\"${COMPATIBILITY_HEADER_PATH}\\"\\n requires objc\\n}\\n" >> "${MODULE_MAP_PATH}"
|
70
|
+
|
71
|
+
SH
|
72
|
+
build_phase.input_paths = %W(
|
73
|
+
${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h
|
74
|
+
${PODS_ROOT}/#{relative_module_map_path}
|
75
|
+
${PODS_ROOT}/#{relative_umbrella_header_path}
|
76
|
+
)
|
77
|
+
build_phase.output_paths = %W(
|
78
|
+
${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap
|
79
|
+
${BUILT_PRODUCTS_DIR}/#{relative_umbrella_header_path.basename}
|
80
|
+
${BUILT_PRODUCTS_DIR}/Swift\ Compatibility\ Header/${PRODUCT_MODULE_NAME}-Swift.h
|
81
|
+
)
|
82
|
+
else
|
83
|
+
UI.warn("========= null swift add_swift_library_compatibility_header_phase")
|
84
|
+
old_add_swift_library_compatibility_header_phase(native_target)
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
88
|
+
|
89
|
+
#-----------------------------------------------------------------------#
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
@@ -126,6 +126,14 @@ module Pod
|
|
126
126
|
break
|
127
127
|
end
|
128
128
|
end
|
129
|
+
# setting modular_headers_for
|
130
|
+
if(target_definition && target_definition.use_modular_headers_hash.values.any?)
|
131
|
+
target_definition.use_modular_headers_hash.values.each do |f|
|
132
|
+
f.each { | pod_name| self.set_use_modular_headers_for_pod(pod_name, true) }
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
|
129
137
|
if target_definition
|
130
138
|
value = target_definition.to_hash['dependencies']
|
131
139
|
next if value.blank?
|
@@ -139,15 +147,16 @@ module Pod
|
|
139
147
|
old_value = self.to_hash['dependencies'].first
|
140
148
|
value << old_value unless (old_value == nil || value.include?(old_value))
|
141
149
|
|
142
|
-
|
150
|
+
set_hash_value(%w(dependencies).first, value)
|
143
151
|
|
144
152
|
value = target_definition.to_hash['configuration_pod_whitelist']
|
145
153
|
next if value.blank?
|
146
154
|
set_hash_value(%w(configuration_pod_whitelist).first, value)
|
147
155
|
|
148
|
-
|
156
|
+
|
149
157
|
end
|
150
158
|
|
159
|
+
|
151
160
|
end
|
152
161
|
|
153
162
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
module Pod
|
2
|
+
class Installer
|
3
|
+
class Xcode
|
4
|
+
# The {Xcode::TargetValidator} ensures that the pod and aggregate target
|
5
|
+
# configuration is valid for installation.
|
6
|
+
#
|
7
|
+
class TargetValidator
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
def verify_swift_pods_have_module_dependencies
|
12
|
+
error_messages = []
|
13
|
+
pod_targets.each do |pod_target|
|
14
|
+
next unless pod_target.uses_swift?
|
15
|
+
|
16
|
+
non_module_dependencies = []
|
17
|
+
pod_target.dependent_targets.each do |dependent_target|
|
18
|
+
next if !dependent_target.should_build? || dependent_target.defines_module?
|
19
|
+
non_module_dependencies << dependent_target.name
|
20
|
+
end
|
21
|
+
|
22
|
+
next if non_module_dependencies.empty?
|
23
|
+
|
24
|
+
error_messages << "The Swift pod `#{pod_target.name}` depends upon #{non_module_dependencies.map { |d| "`#{d}`" }.to_sentence}, " \
|
25
|
+
"which #{non_module_dependencies.count == 1 ? 'does' : 'do'} not define modules. " \
|
26
|
+
'To opt into those targets generating module maps '\
|
27
|
+
'(which is necessary to import them from Swift when building as static libraries), ' \
|
28
|
+
'you may set `use_modular_headers!` globally in your Podfile, '\
|
29
|
+
'or specify `:modular_headers => true` for particular dependencies.'
|
30
|
+
end
|
31
|
+
return false
|
32
|
+
|
33
|
+
# raise Informative, 'The following Swift pods cannot yet be integrated '\
|
34
|
+
# "as static libraries:\n\n#{error_messages.join("\n\n")}"
|
35
|
+
end
|
36
|
+
|
37
|
+
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -14,44 +14,7 @@ module Pod
|
|
14
14
|
# Perform analysis for a given spec (or subspec)
|
15
15
|
#
|
16
16
|
def perform_extensive_analysis(spec)
|
17
|
-
|
18
|
-
error('spec', "Validating a non library spec (`#{spec.name}`) is not supported.")
|
19
|
-
return false
|
20
|
-
end
|
21
|
-
validate_homepage(spec)
|
22
|
-
validate_screenshots(spec)
|
23
|
-
validate_social_media_url(spec)
|
24
|
-
validate_documentation_url(spec)
|
25
|
-
validate_source_url(spec)
|
26
|
-
|
27
|
-
platforms = platforms_to_lint(spec)
|
28
|
-
|
29
|
-
valid = platforms.send(fail_fast ? :all? : :each) do |platform|
|
30
|
-
UI.message "\n\n#{spec} - Analyzing on #{platform} platform.".green.reversed
|
31
|
-
@consumer = spec.consumer(platform)
|
32
|
-
setup_validation_environment
|
33
|
-
begin
|
34
|
-
create_app_project
|
35
|
-
# download_pod
|
36
|
-
# check_file_patterns
|
37
|
-
# install_pod
|
38
|
-
# validate_swift_version
|
39
|
-
# add_app_project_import
|
40
|
-
# validate_vendored_dynamic_frameworks
|
41
|
-
# build_pod
|
42
|
-
# test_pod unless skip_tests
|
43
|
-
ensure
|
44
|
-
tear_down_validation_environment
|
45
|
-
end
|
46
|
-
validated?
|
47
|
-
end
|
48
|
-
return false if fail_fast && !valid
|
49
|
-
perform_extensive_subspec_analysis(spec) unless @no_subspecs
|
50
|
-
rescue => e
|
51
|
-
message = e.to_s
|
52
|
-
message << "\n" << e.backtrace.join("\n") << "\n" if config.verbose?
|
53
|
-
error('unknown', "Encountered an unknown error (#{message}) during validation.")
|
54
|
-
false
|
17
|
+
return true
|
55
18
|
end
|
56
19
|
|
57
20
|
#覆盖
|
@@ -5,19 +5,25 @@ require 'cocoapods/user_interface'
|
|
5
5
|
Pod::HooksManager.register('cocoapods-imy-bin', :pre_install) do |_context, _|
|
6
6
|
require 'cocoapods-imy-bin/native'
|
7
7
|
|
8
|
-
#
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
8
|
+
#pod bin update || install 不走这里
|
9
|
+
if $ARGV[1] = 'update' || $ARGV[1] != 'install'
|
10
|
+
|
11
|
+
else
|
12
|
+
# pod bin repo update 更新二进制私有源
|
13
|
+
Pod::Command::Bin::Repo::Update.new(CLAide::ARGV.new([])).run
|
14
|
+
|
15
|
+
# 有插件/本地库 且是dev环境下,默认进入源码白名单 过滤 archive命令
|
16
|
+
if _context.podfile.plugins.keys.include?('cocoapods-imy-bin') && _context.podfile.configuration_env == 'dev'
|
17
|
+
dependencies = _context.podfile.dependencies
|
18
|
+
dependencies.each do |d|
|
19
|
+
next unless d.respond_to?(:external_source) &&
|
20
|
+
d.external_source.is_a?(Hash) &&
|
21
|
+
!d.external_source[:path].nil? &&
|
22
|
+
$ARGV[1] != 'archive'
|
23
|
+
_context.podfile.set_use_source_pods d.name
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
21
27
|
end
|
22
28
|
|
23
29
|
# 同步 BinPodfile 文件
|
@@ -39,16 +45,22 @@ Pod::HooksManager.register('cocoapods-imy-bin', :pre_install) do |_context, _|
|
|
39
45
|
end
|
40
46
|
|
41
47
|
Pod::HooksManager.register('cocoapods-imy-bin', :source_provider) do |context, _|
|
42
|
-
|
43
|
-
|
48
|
+
#pod bin update || install 不走这里
|
49
|
+
if $ARGV[1] == 'update' || $ARGV[1] != 'install'
|
50
|
+
|
51
|
+
else
|
52
|
+
sources_manager = Pod::Config.instance.sources_manager
|
53
|
+
podfile = Pod::Config.instance.podfile
|
44
54
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
55
|
+
if podfile
|
56
|
+
# 添加源码私有源 && 二进制私有源
|
57
|
+
added_sources = [sources_manager.code_source]
|
58
|
+
if podfile.use_binaries? || podfile.use_binaries_selector
|
59
|
+
added_sources << sources_manager.binary_source
|
60
|
+
added_sources.reverse!
|
61
|
+
end
|
62
|
+
added_sources.each { |source| context.add_source(source) }
|
63
|
+
end
|
53
64
|
end
|
65
|
+
|
54
66
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-imy-bin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2
|
4
|
+
version: 0.3.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 苏良锦
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parallel
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: cocoapods-generate
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 2.0.1
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 2.0.1
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -96,12 +96,12 @@ files:
|
|
96
96
|
- lib/cocoapods-imy-bin/command/bin/archive.rb
|
97
97
|
- lib/cocoapods-imy-bin/command/bin/auto.rb
|
98
98
|
- lib/cocoapods-imy-bin/command/bin/code.rb
|
99
|
+
- lib/cocoapods-imy-bin/command/bin/dup.rb
|
99
100
|
- lib/cocoapods-imy-bin/command/bin/imy.rb
|
100
101
|
- lib/cocoapods-imy-bin/command/bin/init.rb
|
101
102
|
- lib/cocoapods-imy-bin/command/bin/initHotKey.rb
|
102
103
|
- lib/cocoapods-imy-bin/command/bin/install.rb
|
103
104
|
- lib/cocoapods-imy-bin/command/bin/lib/lint.rb
|
104
|
-
- lib/cocoapods-imy-bin/command/bin/local.rb
|
105
105
|
- lib/cocoapods-imy-bin/command/bin/repo/update.rb
|
106
106
|
- lib/cocoapods-imy-bin/command/bin/spec/create.rb
|
107
107
|
- lib/cocoapods-imy-bin/command/bin/spec/push.rb
|
@@ -113,16 +113,13 @@ files:
|
|
113
113
|
- lib/cocoapods-imy-bin/config/config_hot_key_asker.rb
|
114
114
|
- lib/cocoapods-imy-bin/gem_version.rb
|
115
115
|
- lib/cocoapods-imy-bin/helpers.rb
|
116
|
+
- lib/cocoapods-imy-bin/helpers/Info.plist
|
116
117
|
- lib/cocoapods-imy-bin/helpers/build_helper.rb
|
118
|
+
- lib/cocoapods-imy-bin/helpers/build_utils.rb
|
117
119
|
- lib/cocoapods-imy-bin/helpers/framework.rb
|
118
120
|
- lib/cocoapods-imy-bin/helpers/framework_builder.rb
|
119
121
|
- lib/cocoapods-imy-bin/helpers/library.rb
|
120
122
|
- lib/cocoapods-imy-bin/helpers/library_builder.rb
|
121
|
-
- lib/cocoapods-imy-bin/helpers/local/loca_llibrary.rb
|
122
|
-
- lib/cocoapods-imy-bin/helpers/local/local_build_helper.rb
|
123
|
-
- lib/cocoapods-imy-bin/helpers/local/local_framework.rb
|
124
|
-
- lib/cocoapods-imy-bin/helpers/local/local_framework_builder.rb
|
125
|
-
- lib/cocoapods-imy-bin/helpers/local/local_library_builder.rb
|
126
123
|
- lib/cocoapods-imy-bin/helpers/sources_helper.rb
|
127
124
|
- lib/cocoapods-imy-bin/helpers/spec_creator.rb
|
128
125
|
- lib/cocoapods-imy-bin/helpers/spec_files_helper.rb
|
@@ -131,11 +128,13 @@ files:
|
|
131
128
|
- lib/cocoapods-imy-bin/native.rb
|
132
129
|
- lib/cocoapods-imy-bin/native/acknowledgements.rb
|
133
130
|
- lib/cocoapods-imy-bin/native/analyzer.rb
|
131
|
+
- lib/cocoapods-imy-bin/native/file_accessor.rb
|
134
132
|
- lib/cocoapods-imy-bin/native/installation_options.rb
|
135
133
|
- lib/cocoapods-imy-bin/native/installer.rb
|
136
134
|
- lib/cocoapods-imy-bin/native/linter.rb
|
137
135
|
- lib/cocoapods-imy-bin/native/path_source.rb
|
138
136
|
- lib/cocoapods-imy-bin/native/pod_source_installer.rb
|
137
|
+
- lib/cocoapods-imy-bin/native/pod_target_installer.rb
|
139
138
|
- lib/cocoapods-imy-bin/native/podfile.rb
|
140
139
|
- lib/cocoapods-imy-bin/native/podfile_env.rb
|
141
140
|
- lib/cocoapods-imy-bin/native/podfile_generator.rb
|
@@ -145,6 +144,7 @@ files:
|
|
145
144
|
- lib/cocoapods-imy-bin/native/source.rb
|
146
145
|
- lib/cocoapods-imy-bin/native/sources_manager.rb
|
147
146
|
- lib/cocoapods-imy-bin/native/specification.rb
|
147
|
+
- lib/cocoapods-imy-bin/native/target_validator.rb
|
148
148
|
- lib/cocoapods-imy-bin/native/validator.rb
|
149
149
|
- lib/cocoapods-imy-bin/source_provider_hook.rb
|
150
150
|
- lib/cocoapods_plugin.rb
|