Skip to content

Commit c8506b2

Browse files
author
fengming.shi
committed
pre release
1 parent e8becee commit c8506b2

File tree

1,988 files changed

+280436
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,988 files changed

+280436
-0
lines changed

Gemfile.lock

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
PATH
2+
remote: .
3+
specs:
4+
cocoapods-dependency-html (0.0.1)
5+
cocoapods
6+
json
7+
launchy
8+
9+
GEM
10+
remote: https://rubygems.org/
11+
specs:
12+
CFPropertyList (3.0.0)
13+
activesupport (4.2.11.1)
14+
i18n (~> 0.7)
15+
minitest (~> 5.1)
16+
thread_safe (~> 0.3, >= 0.3.4)
17+
tzinfo (~> 1.1)
18+
addressable (2.6.0)
19+
public_suffix (>= 2.0.2, < 4.0)
20+
atomos (0.1.3)
21+
bacon (1.2.0)
22+
claide (1.0.2)
23+
cocoapods (1.6.1)
24+
activesupport (>= 4.0.2, < 5)
25+
claide (>= 1.0.2, < 2.0)
26+
cocoapods-core (= 1.6.1)
27+
cocoapods-deintegrate (>= 1.0.2, < 2.0)
28+
cocoapods-downloader (>= 1.2.2, < 2.0)
29+
cocoapods-plugins (>= 1.0.0, < 2.0)
30+
cocoapods-search (>= 1.0.0, < 2.0)
31+
cocoapods-stats (>= 1.0.0, < 2.0)
32+
cocoapods-trunk (>= 1.3.1, < 2.0)
33+
cocoapods-try (>= 1.1.0, < 2.0)
34+
colored2 (~> 3.1)
35+
escape (~> 0.0.4)
36+
fourflusher (>= 2.2.0, < 3.0)
37+
gh_inspector (~> 1.0)
38+
molinillo (~> 0.6.6)
39+
nap (~> 1.0)
40+
ruby-macho (~> 1.4)
41+
xcodeproj (>= 1.8.1, < 2.0)
42+
cocoapods-core (1.6.1)
43+
activesupport (>= 4.0.2, < 6)
44+
fuzzy_match (~> 2.0.4)
45+
nap (~> 1.0)
46+
cocoapods-deintegrate (1.0.4)
47+
cocoapods-downloader (1.2.2)
48+
cocoapods-plugins (1.0.0)
49+
nap
50+
cocoapods-search (1.0.0)
51+
cocoapods-stats (1.1.0)
52+
cocoapods-trunk (1.3.1)
53+
nap (>= 0.8, < 2.0)
54+
netrc (~> 0.11)
55+
cocoapods-try (1.1.0)
56+
colored2 (3.1.2)
57+
concurrent-ruby (1.1.5)
58+
escape (0.0.4)
59+
fourflusher (2.2.0)
60+
fuzzy_match (2.0.4)
61+
gh_inspector (1.1.3)
62+
i18n (0.9.5)
63+
concurrent-ruby (~> 1.0)
64+
json (2.2.0)
65+
launchy (2.4.3)
66+
addressable (~> 2.3)
67+
metaclass (0.0.4)
68+
minitest (5.11.3)
69+
mocha (1.8.0)
70+
metaclass (~> 0.0.1)
71+
mocha-on-bacon (0.2.3)
72+
mocha (>= 0.13.0)
73+
molinillo (0.6.6)
74+
nanaimo (0.2.6)
75+
nap (1.1.0)
76+
netrc (0.11.0)
77+
prettybacon (0.0.2)
78+
bacon (~> 1.2)
79+
public_suffix (3.0.3)
80+
rake (12.3.2)
81+
ruby-macho (1.4.0)
82+
thread_safe (0.3.6)
83+
tzinfo (1.2.5)
84+
thread_safe (~> 0.1)
85+
xcodeproj (1.9.0)
86+
CFPropertyList (>= 2.3.3, < 4.0)
87+
atomos (~> 0.1.3)
88+
claide (>= 1.0.2, < 2.0)
89+
colored2 (~> 3.1)
90+
nanaimo (~> 0.2.6)
91+
92+
PLATFORMS
93+
ruby
94+
95+
DEPENDENCIES
96+
bacon
97+
bundler (~> 1.3)
98+
cocoapods
99+
cocoapods-dependency-html!
100+
mocha
101+
mocha-on-bacon
102+
prettybacon
103+
rake
104+
105+
BUNDLED WITH
106+
1.16.2

vendor/bundle/bin/bacon

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'bacon' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
if Gem.respond_to?(:activate_bin_path)
23+
load Gem.activate_bin_path('bacon', 'bacon', version)
24+
else
25+
gem "bacon", version
26+
load Gem.bin_path("bacon", "bacon", version)
27+
end

vendor/bundle/bin/fuzzy_match

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'fuzzy_match' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
if Gem.respond_to?(:activate_bin_path)
23+
load Gem.activate_bin_path('fuzzy_match', 'fuzzy_match', version)
24+
else
25+
gem "fuzzy_match", version
26+
load Gem.bin_path("fuzzy_match", "fuzzy_match", version)
27+
end

vendor/bundle/bin/launchy

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'launchy' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
if Gem.respond_to?(:activate_bin_path)
23+
load Gem.activate_bin_path('launchy', 'launchy', version)
24+
else
25+
gem "launchy", version
26+
load Gem.bin_path("launchy", "launchy", version)
27+
end

vendor/bundle/bin/pod

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'cocoapods' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
if Gem.respond_to?(:activate_bin_path)
23+
load Gem.activate_bin_path('cocoapods', 'pod', version)
24+
else
25+
gem "cocoapods", version
26+
load Gem.bin_path("cocoapods", "pod", version)
27+
end

vendor/bundle/bin/rake

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'rake' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
if Gem.respond_to?(:activate_bin_path)
23+
load Gem.activate_bin_path('rake', 'rake', version)
24+
else
25+
gem "rake", version
26+
load Gem.bin_path("rake", "rake", version)
27+
end

vendor/bundle/bin/sandbox-pod

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'cocoapods' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
if Gem.respond_to?(:activate_bin_path)
23+
load Gem.activate_bin_path('cocoapods', 'sandbox-pod', version)
24+
else
25+
gem "cocoapods", version
26+
load Gem.bin_path("cocoapods", "sandbox-pod", version)
27+
end

vendor/bundle/bin/xcodeproj

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'xcodeproj' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
if Gem.respond_to?(:activate_bin_path)
23+
load Gem.activate_bin_path('xcodeproj', 'xcodeproj', version)
24+
else
25+
gem "xcodeproj", version
26+
load Gem.bin_path("xcodeproj", "xcodeproj", version)
27+
end
18 KB
Binary file not shown.
326 KB
Binary file not shown.
102 KB
Binary file not shown.

vendor/bundle/cache/atomos-0.1.3.gem

10 KB
Binary file not shown.

vendor/bundle/cache/bacon-1.2.0.gem

18 KB
Binary file not shown.

vendor/bundle/cache/claide-1.0.2.gem

27.5 KB
Binary file not shown.
230 KB
Binary file not shown.
88.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 KB
Binary file not shown.
23 KB
Binary file not shown.
15.5 KB
Binary file not shown.
10 KB
Binary file not shown.
348 KB
Binary file not shown.

vendor/bundle/cache/escape-0.0.4.gem

9.5 KB
Binary file not shown.
12 KB
Binary file not shown.
110 KB
Binary file not shown.
12.5 KB
Binary file not shown.

vendor/bundle/cache/i18n-0.9.5.gem

60.5 KB
Binary file not shown.

vendor/bundle/cache/json-2.2.0.gem

110 KB
Binary file not shown.

vendor/bundle/cache/launchy-2.4.3.gem

28.5 KB
Binary file not shown.
6.5 KB
Binary file not shown.
77.5 KB
Binary file not shown.

vendor/bundle/cache/mocha-1.8.0.gem

219 KB
Binary file not shown.
6.5 KB
Binary file not shown.
28.5 KB
Binary file not shown.

vendor/bundle/cache/nanaimo-0.2.6.gem

19 KB
Binary file not shown.

vendor/bundle/cache/nap-1.1.0.gem

153 KB
Binary file not shown.

vendor/bundle/cache/netrc-0.11.0.gem

10.5 KB
Binary file not shown.
7.5 KB
Binary file not shown.
94.5 KB
Binary file not shown.

vendor/bundle/cache/rake-12.3.2.gem

85 KB
Binary file not shown.
33 KB
Binary file not shown.
118 KB
Binary file not shown.

vendor/bundle/cache/tzinfo-1.2.5.gem

150 KB
Binary file not shown.
75 KB
Binary file not shown.

vendor/bundle/extensions/x86_64-darwin-17/2.5.0/json-2.2.0/gem.build_complete

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
current directory: /Users/SFM/workspace/cocoapods-dependency-html/vendor/bundle/gems/json-2.2.0/ext/json
2+
/usr/local/opt/ruby/bin/ruby -r ./siteconf20190510-95033-1ktzcw5.rb extconf.rb
3+
creating Makefile
4+
5+
current directory: /Users/SFM/workspace/cocoapods-dependency-html/vendor/bundle/gems/json-2.2.0/ext/json
6+
make "DESTDIR=" clean
7+
8+
current directory: /Users/SFM/workspace/cocoapods-dependency-html/vendor/bundle/gems/json-2.2.0/ext/json
9+
make "DESTDIR="
10+
make: Nothing to be done for `all'.
11+
12+
current directory: /Users/SFM/workspace/cocoapods-dependency-html/vendor/bundle/gems/json-2.2.0/ext/json
13+
make "DESTDIR=" install
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
have_func: checking for rb_enc_raise() in ruby.h... -------------------- yes
2+
3+
"clang -o conftest -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0/x86_64-darwin17 -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0/ruby/backward -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/openssl/include -I/usr/local/opt/readline/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wno-tautological-compare -Wno-parentheses-equality -Wno-constant-logical-operand -Wno-self-assign -Wunused-variable -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wshorten-64-to-32 -Wimplicit-function-declaration -Wdivision-by-zero -Wdeprecated-declarations -Wextra-tokens -fno-common -pipe conftest.c -L. -L/usr/local/Cellar/ruby/2.5.1/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -L. -fstack-protector -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -lruby.2.5.1 -lpthread -ldl -lobjc "
4+
checked program was:
5+
/* begin */
6+
1: #include "ruby.h"
7+
2:
8+
3: int main(int argc, char **argv)
9+
4: {
10+
5: return 0;
11+
6: }
12+
/* end */
13+
14+
"clang -o conftest -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0/x86_64-darwin17 -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0/ruby/backward -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/openssl/include -I/usr/local/opt/readline/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wno-tautological-compare -Wno-parentheses-equality -Wno-constant-logical-operand -Wno-self-assign -Wunused-variable -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wshorten-64-to-32 -Wimplicit-function-declaration -Wdivision-by-zero -Wdeprecated-declarations -Wextra-tokens -fno-common -pipe conftest.c -L. -L/usr/local/Cellar/ruby/2.5.1/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -L. -fstack-protector -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -lruby.2.5.1 -lpthread -ldl -lobjc "
15+
conftest.c:15:57: error: use of undeclared identifier 'rb_enc_raise'
16+
int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_enc_raise; return !p; }
17+
^
18+
1 error generated.
19+
checked program was:
20+
/* begin */
21+
1: #include "ruby.h"
22+
2:
23+
3: #include <ruby.h>
24+
4:
25+
5: /*top*/
26+
6: extern int t(void);
27+
7: int main(int argc, char **argv)
28+
8: {
29+
9: if (argc > 1000000) {
30+
10: printf("%p", &t);
31+
11: }
32+
12:
33+
13: return 0;
34+
14: }
35+
15: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_enc_raise; return !p; }
36+
/* end */
37+
38+
"clang -o conftest -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0/x86_64-darwin17 -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0/ruby/backward -I/usr/local/Cellar/ruby/2.5.1/include/ruby-2.5.0 -I. -I/usr/local/opt/libyaml/include -I/usr/local/opt/openssl/include -I/usr/local/opt/readline/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -O3 -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wno-tautological-compare -Wno-parentheses-equality -Wno-constant-logical-operand -Wno-self-assign -Wunused-variable -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wshorten-64-to-32 -Wimplicit-function-declaration -Wdivision-by-zero -Wdeprecated-declarations -Wextra-tokens -fno-common -pipe conftest.c -L. -L/usr/local/Cellar/ruby/2.5.1/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -L. -fstack-protector -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -lruby.2.5.1 -lpthread -ldl -lobjc "
39+
checked program was:
40+
/* begin */
41+
1: #include "ruby.h"
42+
2:
43+
3: #include <ruby.h>
44+
4:
45+
5: /*top*/
46+
6: extern int t(void);
47+
7: int main(int argc, char **argv)
48+
8: {
49+
9: if (argc > 1000000) {
50+
10: printf("%p", &t);
51+
11: }
52+
12:
53+
13: return 0;
54+
14: }
55+
15: extern void rb_enc_raise();
56+
16: int t(void) { rb_enc_raise(); return 0; }
57+
/* end */
58+
59+
--------------------
60+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2010 Christian Kruse, <[email protected]>
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a
4+
copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
The above copyright notice and this permission notice shall be included
11+
in all copies or substantial portions of the Software.
12+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
13+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
15+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
16+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
17+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
18+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19+

0 commit comments

Comments
 (0)