cocoapods-fix-module 0.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.
- checksums.yaml +7 -0
- data/.gitignore +3 -0
- data/Gemfile +13 -0
- data/LICENSE.txt +22 -0
- data/README.md +11 -0
- data/Rakefile +13 -0
- data/cocoapods-fix-module.gemspec +23 -0
- data/lib/cocoapods-fix-module/gem_version.rb +3 -0
- data/lib/cocoapods-fix-module/patch.rb +79 -0
- data/lib/cocoapods-fix-module.rb +1 -0
- data/lib/cocoapods_plugin.rb +4 -0
- data/spec/command/module_spec.rb +12 -0
- data/spec/spec_helper.rb +50 -0
- metadata +86 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2c8cc782f3225da99e9859a9e3e2de9266121d88
|
4
|
+
data.tar.gz: 1cdf07f68c9c9507d8991824c8cc8956192d10fd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ab443fe71711f43b4fd48afabc149f7c526f98ddbf0c5e65020c776fc8252184cb69c676035ca9c93cf7a495920a8f17ef63c92b43215e6de8b208558f73c1ab
|
7
|
+
data.tar.gz: 3040ef64c06268aaa6ac5a49889353cadbdb4f15c5d4ea5e9cdf450238048aba5ac15ccc0babcb2b8205e0b144e062272733aad4d56dfe3ffb56d69376594800
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2019 Gao <gaoji@bytedance.com>
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'cocoapods-fix-module/gem_version.rb'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'cocoapods-fix-module'
|
8
|
+
spec.version = CocoapodsFixModule::VERSION
|
9
|
+
spec.authors = ['Leavez']
|
10
|
+
spec.email = ['gaojiji@gmail.com']
|
11
|
+
spec.description = %q{A short description of cocoapods-fix-module.}
|
12
|
+
spec.summary = %q{A longer description of cocoapods-fix-module.}
|
13
|
+
spec.homepage = 'https://github.com/EXAMPLE/cocoapods-fix-module'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
22
|
+
spec.add_development_dependency 'rake'
|
23
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
|
2
|
+
#
|
3
|
+
# REASON:
|
4
|
+
#
|
5
|
+
# When a pod only have vendored library, and the 'use_modular_header' is on, cocoapods won't
|
6
|
+
# generate a modulemap (so module is not working), beacause it consider it as "should_build? == false".
|
7
|
+
#
|
8
|
+
# It's a bug of cocoapods.
|
9
|
+
#
|
10
|
+
# We fix it by patch the should_build? method.
|
11
|
+
# When should_build? == true, it will add
|
12
|
+
# - dummy_source file to compile
|
13
|
+
# - prefix header
|
14
|
+
# - modulemap file
|
15
|
+
# - link the library, set the OTHER_SWIFT_FLAG (to use module -fmodule-map-file)
|
16
|
+
#
|
17
|
+
module Pod
|
18
|
+
class PodTarget
|
19
|
+
|
20
|
+
# when using modular header, should_build? should return YES
|
21
|
+
alias_method :FIX_MODULE_old_should_build? , :should_build?
|
22
|
+
def should_build?
|
23
|
+
return @FIX_MODULE_saved_should_build if defined? @FIX_MODULE_saved_should_build
|
24
|
+
if uses_modular_headers?
|
25
|
+
@FIX_MODULE_saved_should_build = true
|
26
|
+
return @FIX_MODULE_saved_should_build
|
27
|
+
else
|
28
|
+
return FIX_MODULE_old_should_build?()
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
# Vendored library whill usually have the same name with the pod name,
|
38
|
+
# so the .a file may have a confict name, as the dummy source will create a .a file
|
39
|
+
# We override the dummy .a file's name
|
40
|
+
# NOTE: it will affect all the lib name generated by cocoapods
|
41
|
+
module Pod
|
42
|
+
class Target
|
43
|
+
def static_library_name
|
44
|
+
"lib#{label}_fixModule.a"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
|
50
|
+
# Depress the checking
|
51
|
+
# Beacuse the target have no source to build even when should_build? == true,
|
52
|
+
# which break the validation.
|
53
|
+
module Pod
|
54
|
+
class Installer
|
55
|
+
class Xcode
|
56
|
+
class PodsProjectGenerator
|
57
|
+
class PodTargetInstaller
|
58
|
+
|
59
|
+
def validate_targets_contain_sources(args)
|
60
|
+
# do nothing
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
# skip creating dummy source if no build files
|
70
|
+
# FIX_MODULE_old_create_dummy_source = instance_method(:create_dummy_source)
|
71
|
+
# define_method(:create_dummy_source) do |native_target|
|
72
|
+
|
73
|
+
# if not target.FIX_MODULE_old_should_build?
|
74
|
+
# # when nothing to build, don't create dummy source
|
75
|
+
# else
|
76
|
+
# FIX_MODULE_old_create_dummy_source.bind(self).(native_target)
|
77
|
+
# end
|
78
|
+
# end
|
79
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'cocoapods-fix-module/gem_version'
|
data/spec/spec_helper.rb
ADDED
@@ -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,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-fix-module
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Leavez
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-03-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: A short description of cocoapods-fix-module.
|
42
|
+
email:
|
43
|
+
- gaojiji@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- cocoapods-fix-module.gemspec
|
54
|
+
- lib/cocoapods-fix-module.rb
|
55
|
+
- lib/cocoapods-fix-module/gem_version.rb
|
56
|
+
- lib/cocoapods-fix-module/patch.rb
|
57
|
+
- lib/cocoapods_plugin.rb
|
58
|
+
- spec/command/module_spec.rb
|
59
|
+
- spec/spec_helper.rb
|
60
|
+
homepage: https://github.com/EXAMPLE/cocoapods-fix-module
|
61
|
+
licenses:
|
62
|
+
- MIT
|
63
|
+
metadata: {}
|
64
|
+
post_install_message:
|
65
|
+
rdoc_options: []
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
requirements: []
|
79
|
+
rubyforge_project:
|
80
|
+
rubygems_version: 2.5.2.3
|
81
|
+
signing_key:
|
82
|
+
specification_version: 4
|
83
|
+
summary: A longer description of cocoapods-fix-module.
|
84
|
+
test_files:
|
85
|
+
- spec/command/module_spec.rb
|
86
|
+
- spec/spec_helper.rb
|