模块化之私有服务器管理基础框架

0.搭建git本地私有服务器

Git服务器搭建全过程分步详解

1.链接git仓库

image.png

2.在本地链接一个文件夹

image.png

将项目拖入git文件夹中即可通过Sourcetree上传到git仓库.

3.创建.podspec文件

pod spec create XXX(框架名称) 获得FQPhotoPicker.podspec文件

image.png

4.使用文本编辑对刚创建FQPhotoPicker.podspec进行编辑详情了解:

A.将内容全部删除,然后将以下内容复制进去

Pod::Spec.new do |s|

 s.name  = 'FQPhotoPicker'

 s.version = '0.0.1'

 s.summary = '非常简单易用的轻量级相册框架。'

 s.homepage = 'https://github.com/FQDEVER/FQPhotoPicker'

 s.license = { :type => 'MIT', :file => 'LICENSE' }

 s.author  = { 'FQDEVER' => '[email protected]' }

 s.source = { :git => '[email protected]:FQ_AlertTipView.git',:tag => s.version }

 s.source_files  = 'FQImagePickerVC/*.{h,m}'

 s.platform  = :ios

 s.ios.deployment_target = '9.0'

 s.dependency  'Masonry'

end

command + S保存

5.验证 podspec 文件

终端 cd 到你的项目目录.执行

pod lib lint

<如果提示:but you can use '--allow-warnings' to ignore them.那就有部分提示语.使用:pod lib lint --allow-warnings忽略提示>

<如果有error.那就看提示的那里.再去FQPhotoPicker.podspec文件去配置正确即可>

<如果是Swift程序.需要指定一下Swift版本.在FQPhotoPicker.podspec同目录下创建.swift-version文件.在里面写上版本即可.如果:4.0(echo "4.0" >> .swift-version),随后保存并再次验证>

<注:podspec文件验证成功.需要再次将更改文件上传至github-步骤5>

6.给项目打上tag版本

CocoPods 是依赖tag版本的.必须要打上tag版本.

因为前面已经指定了tag就是版本. s.source = { :git => '[email protected]:FQ_AlertTipView.git',:tag => s.version }

所以我们要保证版本号和tag一致

进入终端:

git tag “0.0.1” *//* 为 *git* 提交打上 *tag*

git push --tags *//* 将 *tag* 推送到远程仓库

7.在本地添加一个私有库:

image.png

命令完成后~/.CocoaPods/repo下会多出一个文件夹mineRepo

随后上传本地私有库索引

pod repo push mineRepo FQ_AlertView.podspec --allow-warnings

image.png

搜索该私有库:

pod search FQ_AlertView

image.png

8.使用

source 'https://github.com/CocoaPods/Specs.git' # 公共仓库地址

source ‘[email protected]:cocoapods_Spec_Repo.git’ #私有仓库地址

target 'FQ_AlertTipView' do

pod 'FQ_AlertView'

end

你可能感兴趣的:(模块化之私有服务器管理基础框架)