cocoapods 一
2017-02-04 本文已影响25人
观星
cocoapods有很多值得学习的地方,自己也被cocoapods坑了很多次,所以想要认真的了解一下cocoapods。一点一点的学习吧。
首先,使用cocoapods都是从执行pod命令开始的,先看看pod命令都干了些什么。
先看看pod命令在哪里
$ where pod
/usr/local/bin/pod
对应的文件找到了,看看这个文件的内容
$ cat /usr/local/bin/pod
#!/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'cocoapods' is installed as part of a gem, and
# this file is here to facilitate running it.
#
require 'rubygems'
version = ">= 0.a"
if ARGV.first
str = ARGV.first
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
version = $1
ARGV.shift
end
end
load Gem.activate_bin_path('cocoapods', 'pod', version)
这是一个ruby文件,不先了解ruby是没办法继续下去了,先去看看ruby。
1 require 'rubygems'
2
3 version = ">= 0.a"
4
5 if ARGV.first
6 str = ARGV.first
7 str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
8 if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
9 version = $1
10 ARGV.shift
11 end
12 end
13
14 load Gem.activate_bin_path('cocoapods', 'pod', version)
第一行相当于import吧,加了个什么东西进来
第三行定义了一个变量version,赋值 ">= 0.a"
第五行的ARGV代表参数,执行pod update, ARGV.first就是update
第八行的str =~ /\A_(.*)\z/是正则匹配,应该是匹配以 "_" 开头并以 '' 结尾的字符串,不知道什么时候会执行到9和10两句,一般应该是不会
第十四句 Gem.activate_bin_path('cocoapods', 'pod', version)在我的环境里的返回是
/Library/Ruby/Gems/2.0.0/gems/cocoapods-1.1.1/bin/pod
然后
load "/Library/Ruby/Gems/2.0.0/gems/cocoapods-1.1.1/bin/pod"
也就是执行这个文件了。这个文件得好好看看,ruby好多还看不懂,需要频繁百度。