cocoapods-imy-bin 0.2.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.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +22 -0
  3. data/README.md +541 -0
  4. data/lib/cocoapods-imy-bin.rb +2 -0
  5. data/lib/cocoapods-imy-bin/command.rb +2 -0
  6. data/lib/cocoapods-imy-bin/command/bin.rb +60 -0
  7. data/lib/cocoapods-imy-bin/command/bin/archive.rb +184 -0
  8. data/lib/cocoapods-imy-bin/command/bin/auto.rb +188 -0
  9. data/lib/cocoapods-imy-bin/command/bin/code.rb +237 -0
  10. data/lib/cocoapods-imy-bin/command/bin/imy.rb +46 -0
  11. data/lib/cocoapods-imy-bin/command/bin/init.rb +69 -0
  12. data/lib/cocoapods-imy-bin/command/bin/initHotKey.rb +70 -0
  13. data/lib/cocoapods-imy-bin/command/bin/install.rb +44 -0
  14. data/lib/cocoapods-imy-bin/command/bin/lib/lint.rb +69 -0
  15. data/lib/cocoapods-imy-bin/command/bin/local.rb +156 -0
  16. data/lib/cocoapods-imy-bin/command/bin/repo/update.rb +43 -0
  17. data/lib/cocoapods-imy-bin/command/bin/spec/create.rb +73 -0
  18. data/lib/cocoapods-imy-bin/command/bin/spec/push.rb +114 -0
  19. data/lib/cocoapods-imy-bin/command/bin/update.rb +148 -0
  20. data/lib/cocoapods-imy-bin/config/config.rb +137 -0
  21. data/lib/cocoapods-imy-bin/config/config_asker.rb +57 -0
  22. data/lib/cocoapods-imy-bin/config/config_builder.rb +179 -0
  23. data/lib/cocoapods-imy-bin/config/config_hot_key.rb +103 -0
  24. data/lib/cocoapods-imy-bin/config/config_hot_key_asker.rb +57 -0
  25. data/lib/cocoapods-imy-bin/gem_version.rb +10 -0
  26. data/lib/cocoapods-imy-bin/helpers.rb +4 -0
  27. data/lib/cocoapods-imy-bin/helpers/build_helper.rb +150 -0
  28. data/lib/cocoapods-imy-bin/helpers/framework.rb +62 -0
  29. data/lib/cocoapods-imy-bin/helpers/framework_builder.rb +307 -0
  30. data/lib/cocoapods-imy-bin/helpers/library.rb +54 -0
  31. data/lib/cocoapods-imy-bin/helpers/library_builder.rb +90 -0
  32. data/lib/cocoapods-imy-bin/helpers/local/loca_llibrary.rb +57 -0
  33. data/lib/cocoapods-imy-bin/helpers/local/local_build_helper.rb +146 -0
  34. data/lib/cocoapods-imy-bin/helpers/local/local_framework.rb +65 -0
  35. data/lib/cocoapods-imy-bin/helpers/local/local_framework_builder.rb +174 -0
  36. data/lib/cocoapods-imy-bin/helpers/local/local_library_builder.rb +92 -0
  37. data/lib/cocoapods-imy-bin/helpers/sources_helper.rb +33 -0
  38. data/lib/cocoapods-imy-bin/helpers/spec_creator.rb +170 -0
  39. data/lib/cocoapods-imy-bin/helpers/spec_files_helper.rb +77 -0
  40. data/lib/cocoapods-imy-bin/helpers/spec_source_creator.rb +171 -0
  41. data/lib/cocoapods-imy-bin/helpers/upload_helper.rb +84 -0
  42. data/lib/cocoapods-imy-bin/native.rb +19 -0
  43. data/lib/cocoapods-imy-bin/native/acknowledgements.rb +27 -0
  44. data/lib/cocoapods-imy-bin/native/analyzer.rb +53 -0
  45. data/lib/cocoapods-imy-bin/native/installation_options.rb +25 -0
  46. data/lib/cocoapods-imy-bin/native/installer.rb +115 -0
  47. data/lib/cocoapods-imy-bin/native/linter.rb +26 -0
  48. data/lib/cocoapods-imy-bin/native/path_source.rb +33 -0
  49. data/lib/cocoapods-imy-bin/native/pod_source_installer.rb +19 -0
  50. data/lib/cocoapods-imy-bin/native/podfile.rb +91 -0
  51. data/lib/cocoapods-imy-bin/native/podfile_env.rb +37 -0
  52. data/lib/cocoapods-imy-bin/native/podfile_generator.rb +190 -0
  53. data/lib/cocoapods-imy-bin/native/podspec_finder.rb +25 -0
  54. data/lib/cocoapods-imy-bin/native/resolver.rb +230 -0
  55. data/lib/cocoapods-imy-bin/native/sandbox_analyzer.rb +34 -0
  56. data/lib/cocoapods-imy-bin/native/source.rb +35 -0
  57. data/lib/cocoapods-imy-bin/native/sources_manager.rb +20 -0
  58. data/lib/cocoapods-imy-bin/native/specification.rb +31 -0
  59. data/lib/cocoapods-imy-bin/native/validator.rb +77 -0
  60. data/lib/cocoapods-imy-bin/source_provider_hook.rb +54 -0
  61. data/lib/cocoapods_plugin.rb +3 -0
  62. data/spec/command/bin_spec.rb +12 -0
  63. data/spec/spec_helper.rb +50 -0
  64. metadata +180 -0
@@ -0,0 +1,34 @@
1
+
2
+
3
+ module Pod
4
+ class Installer
5
+ class Analyzer
6
+ class SandboxAnalyzer
7
+ # def pod_changed?(pod)
8
+ # spec = root_spec(pod)
9
+ # 有 subspec 的情况下,root spec 对应的 used_files 可能始终为空
10
+ # 要添加为空 && 没有 subspec 的情况
11
+ # file_accessors = spec.available_platforms.map { |platform| Sandbox::FileAccessor.new(sandbox.pod_dir(pod), spec.consumer(platform)) }
12
+ # files = [
13
+ # file_accessors.map(&:vendored_frameworks),
14
+ # file_accessors.map(&:vendored_libraries),
15
+ # file_accessors.map(&:resource_bundle_files),
16
+ # file_accessors.map(&:prefix_header),
17
+ # file_accessors.map(&:resources),
18
+ # file_accessors.map(&:source_files),
19
+ # file_accessors.map(&:module_map),
20
+ # ]
21
+ # used_files = files.flatten.compact.map(&:to_s).uniq
22
+ # p pod if used_files.empty?
23
+
24
+ # return true if spec.version != sandbox_version(pod)
25
+ # return true if spec.checksum != sandbox_checksum(pod)
26
+ # return true if resolved_spec_names(pod) != sandbox_spec_names(pod)
27
+ # return true if sandbox.predownloaded?(pod)
28
+ # return true if folder_empty?(pod)
29
+ # false
30
+ # end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,35 @@
1
+
2
+
3
+ require 'cocoapods'
4
+
5
+ module Pod
6
+ class Source
7
+ # Returns the path of the specification with the given name and version.
8
+ #
9
+ # @param [String] name
10
+ # the name of the Pod.
11
+ #
12
+ # @param [Version,String] version
13
+ # the version for the specification.
14
+ #
15
+ # @return [Pathname] The path of the specification.
16
+ #
17
+ def specification_path(name, version)
18
+ raise ArgumentError, 'No name' unless name
19
+ raise ArgumentError, 'No version' unless version
20
+
21
+ path = pod_path(name) + version.to_s
22
+
23
+ specification_path = Specification::VALID_EXTNAME
24
+ .map { |extname| "#{name}#{extname}" }
25
+ .map { |file| path + file }
26
+ .find(&:exist?)
27
+
28
+ unless specification_path
29
+ raise StandardError, "Unable to find the specification #{name} " \
30
+ "(#{version}) in the #{self.name} source."
31
+ end
32
+ specification_path
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,20 @@
1
+
2
+
3
+ require 'cocoapods'
4
+ require 'cocoapods-imy-bin/config/config'
5
+
6
+ module Pod
7
+ class Source
8
+ class Manager
9
+ # 源码 source
10
+ def code_source
11
+ source_with_name_or_url(CBin.config.code_repo_url)
12
+ end
13
+
14
+ # 二进制 source
15
+ def binary_source
16
+ source_with_name_or_url(CBin.config.binary_repo_url)
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,31 @@
1
+
2
+
3
+ require 'cocoapods-imy-bin/native/sources_manager'
4
+
5
+ module Pod
6
+ class Specification
7
+ VALID_EXTNAME = %w[.binary.podspec.json .binary.podspec .podspec.json .podspec].freeze
8
+ DEFAULT_TEMPLATE_EXTNAME = %w[.binary-template.podspec .binary-template.podspec.json].freeze
9
+
10
+ # TODO
11
+ # 可以在这里根据组件依赖二进制或源码调整 sources 的先后顺序
12
+ # 如果是源码,则调整 code_source 到最前面
13
+ # 如果是二进制,则调整 binary_source 到最前面
14
+ # 这样 CocoaPods 分析时,就会优先获取到对应源的 podspec
15
+ #
16
+ # 先要把 Podfile 里面的配置数据保存到单例中,再在这里判断,就不需要 resolver 了
17
+ # 但是现在这个插件依旧可用,重构需要时间 = = ,没什么动力去重构了呀。。。
18
+ #
19
+ # class Set
20
+ # old_initialize = instance_method(:initialize)
21
+ # define_method(:initialize) do |name, sources|
22
+ # if name == 'TDFAdaptationKit'
23
+ # sources_manager = Pod::Config.instance.sources_manager
24
+ # # sources = [sources_manager.binary_source, *sources].uniq
25
+ # sources = [sources_manager.code_source, *sources].uniq
26
+ # end
27
+ # old_initialize.bind(self).call(name, sources)
28
+ # end
29
+ # end
30
+ end
31
+ end
@@ -0,0 +1,77 @@
1
+
2
+
3
+ module Pod
4
+ class Validator
5
+ # def validate_source_url(spec)
6
+ # return if spec.source.nil? || spec.source[:http].nil?
7
+ # url = URI(spec.source[:http])
8
+ # return if url.scheme == 'https' || url.scheme == 'file'
9
+ # warning('http', "The URL (`#{url}`) doesn't use the encrypted HTTPs protocol. " \
10
+ # 'It is crucial for Pods to be transferred over a secure protocol to protect your users from man-in-the-middle attacks. '\
11
+ # 'This will be an error in future releases. Please update the URL to use https.')
12
+ # end
13
+ #
14
+ # Perform analysis for a given spec (or subspec)
15
+ #
16
+ def perform_extensive_analysis(spec)
17
+ if spec.non_library_specification?
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
55
+ end
56
+
57
+ #覆盖
58
+ def check_file_patterns
59
+ FILE_PATTERNS.each do |attr_name|
60
+ next if %i(source_files resources).include? attr_name
61
+ if respond_to?("_validate_#{attr_name}", true)
62
+ send("_validate_#{attr_name}")
63
+ else
64
+ validate_nonempty_patterns(attr_name, :error)
65
+ end
66
+ end
67
+
68
+ _validate_header_mappings_dir
69
+ if consumer.spec.root?
70
+ _validate_license
71
+ _validate_module_map
72
+ end
73
+ end
74
+
75
+ def validate_source_url(spec); end
76
+ end
77
+ end
@@ -0,0 +1,54 @@
1
+ require 'cocoapods-imy-bin/native/sources_manager'
2
+ require 'cocoapods-imy-bin/command/bin/repo/update'
3
+ require 'cocoapods/user_interface'
4
+
5
+ Pod::HooksManager.register('cocoapods-imy-bin', :pre_install) do |_context, _|
6
+ require 'cocoapods-imy-bin/native'
7
+
8
+ # pod bin repo update 更新二进制私有源
9
+ Pod::Command::Bin::Repo::Update.new(CLAide::ARGV.new([])).run
10
+
11
+ # 有插件/本地库 且是dev环境下,默认进入源码白名单 过滤 archive命令
12
+ if _context.podfile.plugins.keys.include?('cocoapods-imy-bin') && _context.podfile.configuration_env == 'dev'
13
+ dependencies = _context.podfile.dependencies
14
+ dependencies.each do |d|
15
+ next unless d.respond_to?(:external_source) &&
16
+ d.external_source.is_a?(Hash) &&
17
+ !d.external_source[:path].nil? &&
18
+ $ARGV[1] != 'archive'
19
+ _context.podfile.set_use_source_pods d.name
20
+ end
21
+ end
22
+
23
+ # 同步 BinPodfile 文件
24
+ project_root = Pod::Config.instance.project_root
25
+ path = File.join(project_root.to_s, 'BinPodfile')
26
+
27
+ next unless File.exist?(path)
28
+
29
+ contents = File.open(path, 'r:utf-8', &:read)
30
+ podfile = Pod::Config.instance.podfile
31
+ podfile.instance_eval do
32
+ begin
33
+ eval(contents, nil, path)
34
+ rescue Exception => e
35
+ message = "Invalid `#{path}` file: #{e.message}"
36
+ raise Pod::DSLError.new(message, path, e, contents)
37
+ end
38
+ end
39
+ end
40
+
41
+ Pod::HooksManager.register('cocoapods-imy-bin', :source_provider) do |context, _|
42
+ sources_manager = Pod::Config.instance.sources_manager
43
+ podfile = Pod::Config.instance.podfile
44
+
45
+ if podfile
46
+ # 添加源码私有源 && 二进制私有源
47
+ added_sources = [sources_manager.code_source]
48
+ if podfile.use_binaries? || podfile.use_binaries_selector
49
+ added_sources << sources_manager.binary_source
50
+ added_sources.reverse!
51
+ end
52
+ added_sources.each { |source| context.add_source(source) }
53
+ end
54
+ end
@@ -0,0 +1,3 @@
1
+ require 'cocoapods-imy-bin/gem_version.rb'
2
+ require 'cocoapods-imy-bin/command'
3
+ require 'cocoapods-imy-bin/source_provider_hook'
@@ -0,0 +1,12 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+
3
+ module Pod
4
+ describe Command::Bin do
5
+ describe 'CLAide' do
6
+ it 'registers it self' do
7
+ Command.parse(%w{ bin }).should.be.instance_of Command::Bin
8
+ end
9
+ end
10
+ end
11
+ end
12
+
@@ -0,0 +1,50 @@
1
+ require 'pathname'
2
+ ROOT = Pathname.new(File.expand_path('../../', __FILE__))
3
+ $:.unshift((ROOT + 'lib').to_s)
4
+ $:.unshift((ROOT + 'spec').to_s)
5
+
6
+ require 'bundler/setup'
7
+ require 'bacon'
8
+ require 'mocha-on-bacon'
9
+ require 'pretty_bacon'
10
+ require 'pathname'
11
+ require 'cocoapods'
12
+
13
+ Mocha::Configuration.prevent(:stubbing_non_existent_method)
14
+
15
+ require 'cocoapods_plugin'
16
+
17
+ #-----------------------------------------------------------------------------#
18
+
19
+ module Pod
20
+
21
+ # Disable the wrapping so the output is deterministic in the tests.
22
+ #
23
+ UI.disable_wrap = true
24
+
25
+ # Redirects the messages to an internal store.
26
+ #
27
+ module UI
28
+ @output = ''
29
+ @warnings = ''
30
+
31
+ class << self
32
+ attr_accessor :output
33
+ attr_accessor :warnings
34
+
35
+ def puts(message = '')
36
+ @output << "#{message}\n"
37
+ end
38
+
39
+ def warn(message = '', actions = [])
40
+ @warnings << "#{message}\n"
41
+ end
42
+
43
+ def print(message)
44
+ @output << message
45
+ end
46
+ end
47
+ end
48
+ end
49
+
50
+ #-----------------------------------------------------------------------------#
metadata ADDED
@@ -0,0 +1,180 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cocoapods-imy-bin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - 苏良锦
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-06-14 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: 1.6.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.6.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: cocoapods-imy-bin is a plugin which helps develpers switching pods between
84
+ source code and binary.
85
+ email:
86
+ - suliangjin@xiaoyouzi.com
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - LICENSE.txt
92
+ - README.md
93
+ - lib/cocoapods-imy-bin.rb
94
+ - lib/cocoapods-imy-bin/command.rb
95
+ - lib/cocoapods-imy-bin/command/bin.rb
96
+ - lib/cocoapods-imy-bin/command/bin/archive.rb
97
+ - lib/cocoapods-imy-bin/command/bin/auto.rb
98
+ - lib/cocoapods-imy-bin/command/bin/code.rb
99
+ - lib/cocoapods-imy-bin/command/bin/imy.rb
100
+ - lib/cocoapods-imy-bin/command/bin/init.rb
101
+ - lib/cocoapods-imy-bin/command/bin/initHotKey.rb
102
+ - lib/cocoapods-imy-bin/command/bin/install.rb
103
+ - lib/cocoapods-imy-bin/command/bin/lib/lint.rb
104
+ - lib/cocoapods-imy-bin/command/bin/local.rb
105
+ - lib/cocoapods-imy-bin/command/bin/repo/update.rb
106
+ - lib/cocoapods-imy-bin/command/bin/spec/create.rb
107
+ - lib/cocoapods-imy-bin/command/bin/spec/push.rb
108
+ - lib/cocoapods-imy-bin/command/bin/update.rb
109
+ - lib/cocoapods-imy-bin/config/config.rb
110
+ - lib/cocoapods-imy-bin/config/config_asker.rb
111
+ - lib/cocoapods-imy-bin/config/config_builder.rb
112
+ - lib/cocoapods-imy-bin/config/config_hot_key.rb
113
+ - lib/cocoapods-imy-bin/config/config_hot_key_asker.rb
114
+ - lib/cocoapods-imy-bin/gem_version.rb
115
+ - lib/cocoapods-imy-bin/helpers.rb
116
+ - lib/cocoapods-imy-bin/helpers/build_helper.rb
117
+ - lib/cocoapods-imy-bin/helpers/framework.rb
118
+ - lib/cocoapods-imy-bin/helpers/framework_builder.rb
119
+ - lib/cocoapods-imy-bin/helpers/library.rb
120
+ - 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
+ - lib/cocoapods-imy-bin/helpers/sources_helper.rb
127
+ - lib/cocoapods-imy-bin/helpers/spec_creator.rb
128
+ - lib/cocoapods-imy-bin/helpers/spec_files_helper.rb
129
+ - lib/cocoapods-imy-bin/helpers/spec_source_creator.rb
130
+ - lib/cocoapods-imy-bin/helpers/upload_helper.rb
131
+ - lib/cocoapods-imy-bin/native.rb
132
+ - lib/cocoapods-imy-bin/native/acknowledgements.rb
133
+ - lib/cocoapods-imy-bin/native/analyzer.rb
134
+ - lib/cocoapods-imy-bin/native/installation_options.rb
135
+ - lib/cocoapods-imy-bin/native/installer.rb
136
+ - lib/cocoapods-imy-bin/native/linter.rb
137
+ - lib/cocoapods-imy-bin/native/path_source.rb
138
+ - lib/cocoapods-imy-bin/native/pod_source_installer.rb
139
+ - lib/cocoapods-imy-bin/native/podfile.rb
140
+ - lib/cocoapods-imy-bin/native/podfile_env.rb
141
+ - lib/cocoapods-imy-bin/native/podfile_generator.rb
142
+ - lib/cocoapods-imy-bin/native/podspec_finder.rb
143
+ - lib/cocoapods-imy-bin/native/resolver.rb
144
+ - lib/cocoapods-imy-bin/native/sandbox_analyzer.rb
145
+ - lib/cocoapods-imy-bin/native/source.rb
146
+ - lib/cocoapods-imy-bin/native/sources_manager.rb
147
+ - lib/cocoapods-imy-bin/native/specification.rb
148
+ - lib/cocoapods-imy-bin/native/validator.rb
149
+ - lib/cocoapods-imy-bin/source_provider_hook.rb
150
+ - lib/cocoapods_plugin.rb
151
+ - spec/command/bin_spec.rb
152
+ - spec/spec_helper.rb
153
+ homepage: https://github.com/su350380433/cocaopods-imy-bin
154
+ licenses:
155
+ - MIT
156
+ metadata: {}
157
+ post_install_message:
158
+ rdoc_options: []
159
+ require_paths:
160
+ - lib
161
+ required_ruby_version: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ required_rubygems_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ requirements: []
172
+ rubyforge_project:
173
+ rubygems_version: 2.5.2.3
174
+ signing_key:
175
+ specification_version: 4
176
+ summary: cocoapods-imy-bin is a plugin which helps develpers switching pods between
177
+ source code and binary.
178
+ test_files:
179
+ - spec/command/bin_spec.rb
180
+ - spec/spec_helper.rb