Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eleme/bigkeeper
Efficiency improvement for iOS&Android modular development.
https://github.com/eleme/bigkeeper
automation cocoapods gitflow ios modularization ruby
Last synced: 3 months ago
JSON representation
Efficiency improvement for iOS&Android modular development.
- Host: GitHub
- URL: https://github.com/eleme/bigkeeper
- Owner: eleme
- License: mit
- Created: 2017-09-18T06:26:50.000Z (about 7 years ago)
- Default Branch: develop
- Last Pushed: 2022-07-22T00:58:06.000Z (over 2 years ago)
- Last Synced: 2024-04-18T15:53:53.816Z (7 months ago)
- Topics: automation, cocoapods, gitflow, ios, modularization, ruby
- Language: Ruby
- Homepage:
- Size: 10.2 MB
- Stars: 212
- Watchers: 11
- Forks: 32
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[English](./docs/en-US/README.md)
---
# bigkeeper
![](./resources/banner.png)
[![Build Status](https://travis-ci.org/BigKeeper/bigkeeper.svg?branch=master)](https://travis-ci.org/BigKeeper/bigkeeper)
[![Maintainability](https://api.codeclimate.com/v1/badges/c6dc4161e84fcec9a890/maintainability)](https://codeclimate.com/github/BigKeeper/big-keeper/maintainability)
[![Gem Version](https://badge.fury.io/rb/bigkeeper.svg)](https://rubygems.org/gems/bigkeeper)
[![Language: Ruby](https://img.shields.io/badge/language-Ruby-da212f.svg)](https://www.ruby-lang.org/)
[![License](https://img.shields.io/badge/license-MIT-000000.svg)](https://github.com/BigKeeper/big-keeper/blob/master/LICENSE)
[![Gitter](https://img.shields.io/gitter/room/BigKeeper/BigKeeper.svg)](https://gitter.im/Big-Keeper/Lobby)bigkeeper 是一个 **iOS&Android 模块化项目**效率提升工具,旨在帮助有模块化需求的团队更轻松的渡过“半模块化”尴尬期。
使用这个工具后,开发者**在主项目内**即可完成**包括其他业务模块在内**所有代码的编写和管理。
我们借鉴 CocoaPods 的做法,开发团队只需要在主项目中加入一个 Bigkeeper 文件,然后利用我们提供的 `big` 命令,即可更便捷的实现**代码分支**和**业务模块**的管理;另外,通过 `big` 命令提供的流程,也能帮助开发者养成更规范的日常开发习惯,减轻项目管理者的负担。
## 应用场景
在模块化项目的过渡阶段,我们往往会碰到业务拆分不是那么彻底的情况(PS:比如主项目中仍然存在业务相关代码),这样就会导致一系列问题:
- 开发流程方面:开发者在开发一个 feature 时需要维护多个项目的分支,同时还要频繁修改主项目的 `Podfile`;
- 项目管理者需要花很大精力去和团队成员同步项目管理规范流程,尤其对于新人,挑战很大;
- 开发过程中如果碰到突发情况需要开新分支处理问题时对当前工作区的保存操作会很繁琐(PS:因为涉及到多个项目);
- 日常开发过程中类似 commit、pull、push 等操作比较繁琐(PS:因为涉及到多个项目);
- 资源(比如图片)散落在各个业务模块,可能存在重名、重复等问题,难以管理;
- 业务模块可能存在横向依赖的问题,导致业务模块间耦合严重,不能单独编译运行。
- 各模块依赖的版本没有统一的同步更新方式,导致各个模块的开发环境不一致,问题百出。bigkeeper 的出现就是为了解决这些问题。
> 注:也有很多人认为直接做一个完整的组件化项目更合理,而不需要采用这样曲折的方案,但是很多时候我们并没有这么多的精力直接去做这些事情,bigkeeper 存在的价值也是为了帮助开发团队在** iOS&Android 模块化项目过渡阶段**能更轻松的往前走。
## 安装
- 当作 Ruby Gem 使用:
在项目的 Gemfile 中加入下面这行:```ruby
gem 'bigkeeper'
```然后执行:
$ bundle
- 直接安装:
$ gem install bigkeeper
## 使用方法
- [Bigkeeper 文件配置](./docs/zh-CN/BIGKEEPER_FILE.md)
- `bigkeeper` 工具使用:直接在命令行执行 `bigkeeper` 可以查看其提供的所有功能:
```
NAME
big - Efficiency improvement for iOS&Android module development, iOSer&Android using this tool can make module development easier.SYNOPSIS
big [global options] command [command options] [arguments...]GLOBAL OPTIONS
--help - Show this message
-p, --path=arg - (default: ./)
-u, --user=arg - (default: mmoaay)
-v, --ver=arg - (default: Version in Bigkeeper file)COMMANDS
feature - Gitflow feature operations
help - Shows a list of commands or help for one command
hotfix - Gitflow hotfix operations
image - Image operations
podfile - Podfile operation
release - Gitflow release operations
spec - Spec operations
version - Show version of bigkeeper
```全局参数如下:
- -p, --path:主项目所在的目录,默认是执行 bigkeeper 命令的当前目录;
- -v, --ver:版本号,如果没有指定的话,会以主项目 [Bigkeeper 文件](./docs/zh-CN/BIGKEEPER_FILE.md)中指定的版本为准。
- -u, --user:用户名,默认是 git global config 的 user.name,会显示在命令提示信息中,比如上述提示信息中的默认用户名是 mmoaay功能列表如下:
- [feature](./docs/zh-CN/FEATURE&HOTFIX.md):功能开发流程;
- [hotfix](./docs/zh-CN/FEATURE&HOTFIX.md):线上 Bug 修复流程;
- [release](./docs/zh-CN/RELEASE.md):发布流程;
- [podfile](./docs/zh-CN/PODFILE.md):Podfile 管理;
- [image](./docs/zh-CN/IMAGE.md):图片管理;
- [spec](./docs/zh-CN/SPEC.md):spec 管理;
- version:查看 bigkeeper 当前版本号;
- help:查看 bigkeeper 帮助文档。## 其他
- [一些建议](./docs/zh-CN/RECOMMEND.md)
- [一些思考]()## 协议
![](https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/License_icon-mit-88x31-2.svg/128px-License_icon-mit-88x31-2.svg.png)
bigkeeper 基于 MIT 协议进行分发和使用,更多信息参见协议文件。