fir-cli 1.3.5 → 1.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e2c2eb4c08bfe43c5e1237dda28ad11f9899dce
4
- data.tar.gz: edabc62959f3098a21ecf84861d7c7d39a170b65
3
+ metadata.gz: 2f3f4e92a079da9de49f324cdb3929c29d08de75
4
+ data.tar.gz: b533093fa321bd7761ccb02335c825a44314c8c0
5
5
  SHA512:
6
- metadata.gz: 6c30e3dd5ff254e45401208381ec8d5d0ebd61cf7d56dcab5d353248454c95b4693f1a60ba280224d7585433ac3f81a7eb82a230004a49aa8c7efd0696006975
7
- data.tar.gz: 5fb9eaf4199ab0d6c750f25704a2cf5b017691e46120b01a8e4604aa2b8506d23b9523287006cdc097add4c7d2dec91d440d86ee08e6a6e83f491946579f9908
6
+ metadata.gz: eb98e207db717384ab121ffca6485cb28b5526b01fef5fb187ba5bd660d9ff0dc3aa6ac458814a10a2183dcedc646f97219a5def3ac0728f61aecda7bada5cbe
7
+ data.tar.gz: 7ccb81cf640a3363e5c8983602252e8fb645269d0484294b725fd93dd5e93ccc8aa06aad52cc51d762654a327b9ca08dcdca18b9ab6d859a9b87d42c44ec8506
data/CHANGELOG CHANGED
@@ -1,5 +1,8 @@
1
1
  ## 更新记录
2
2
 
3
+ ### fir-cli 1.3.6
4
+ - 增加自定义 build 后 ipa, apk 的 name
5
+
3
6
  ### fir-cli 1.3.5
4
7
  - 修复转换 icon 的 bug
5
8
 
data/Home.md ADDED
File without changes
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- fir.im-cli
1
+ fir.im-cli
2
2
  ---
3
3
 
4
4
  ![Build Status Images](https://travis-ci.org/FIRHQ/fir-cli.svg)
@@ -7,43 +7,29 @@ fir.im-cli
7
7
  [![Gem Version](https://badge.fury.io/rb/fir-cli.svg)](http://badge.fury.io/rb/fir-cli)
8
8
  [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/FIRHQ/fir-cli?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
9
9
 
10
- > fir.im-cli 可以通过指令查看, 上传, 编译应用
10
+ fir.im-cli 可以通过指令查看, 上传, 编译 ios/android 应用.
11
11
 
12
- ## 使用入门
13
- ### 从安装入手
12
+ ## 安装
14
13
 
15
- fir.im-cli 使用 Ruby 构建,只要安装相应 ruby gem 即可:
14
+ ### OSX 安装
16
15
 
17
- ```shell
18
- $ sudo gem install fir-cli
19
- ```
20
-
21
- 如果是 OS X 系统, 需要提前安装好 osx command line tools:
16
+ 在安装前需要确保 **osx command line tools** 已经被提前安装好:
22
17
 
23
- ```shell
18
+ ```sh
24
19
  $ xcode-select --install
25
20
  ```
26
21
 
27
- 如果出现无法安装的现象, 请先更换 Ruby 的淘宝源(由于国内网络原因, 你懂的), 并升级下系统自带的 gem
28
-
29
- ```shell
30
- sudo gem sources --remove https://rubygems.org/
31
- sudo gem sources -a https://ruby.taobao.org/
32
- sudo gem sources -l
33
- *** CURRENT SOURCES ***
34
-
35
- https://ruby.taobao.org
36
- # 请确保只有 ruby.taobao.org, 如果有其他的源, 请 remove 掉
22
+ fir.im-cli 使用 Ruby 构建, 无需编译, 只要安装相应 ruby gem 即可(如果出现相关权限不足的错误, 请在命令行前加上 `sudo`):
37
23
 
38
- sudo gem update --system
39
- sudo gem install fir-cli
24
+ ```sh
25
+ $ gem install fir-cli
40
26
  ```
41
27
 
42
28
  **注意: 如果你的系统是 mac OSX 10.11 以后的版本, 由于10.11引入了 `rootless`, 无法直接安装 fir-cli, 有以下三种解决办法:**
43
29
 
44
30
  1\. 使用 [RVM](https://rvm.io/) 安装 Ruby, 再安装 fir-cli(推荐)
45
31
 
46
- ```shell
32
+ ```sh
47
33
  # Install RVM:
48
34
  $ \curl -sSL https://get.rvm.io | bash -s stable --ruby
49
35
 
@@ -52,21 +38,48 @@ $ gem install fir-cli
52
38
 
53
39
  2\. 指定 fir-cli 中 bin 文件的 PATH
54
40
 
55
- ```shell
56
- $ export PATH=/usr/local/bin:$PATH;sudo gem install -n /usr/local/bin fir-cli
41
+ ```sh
42
+ $ export PATH=/usr/local/bin:$PATH;gem install -n /usr/local/bin fir-cli
57
43
  ```
58
44
 
59
45
  3\. 重写 Ruby Gem 的 bindir
60
46
 
61
- ```shell
47
+ ```sh
62
48
  $ echo 'gem: --bindir /usr/local/bin' >> ~/.gemrc
63
- $ sudo gem install fir-cli
49
+ $ gem install fir-cli
64
50
  ```
65
51
 
66
- 安装后,你可以在命令行执行指令
52
+ ### Linux 安装
53
+
54
+ 需要提前安装好 Ruby 版本 > 1.9.3
55
+
56
+ ```sh
57
+ $ gem install fir-cli
58
+ ```
67
59
 
68
- ```shell
69
- $ fir
60
+ **注意: 如果出现 `ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError)` 的错误, 请先更换 Ruby 的淘宝源(由于国内网络原因, 你懂的), 并升级下系统自带的 gem**
61
+
62
+ ```sh
63
+ $ gem sources --remove https://rubygems.org/
64
+ $ gem sources -a https://ruby.taobao.org/
65
+ $ gem sources -l
66
+ *** CURRENT SOURCES ***
67
+
68
+ https://ruby.taobao.org
69
+ # 请确保只有 ruby.taobao.org, 如果有其他的源, 请 remove 掉
70
+
71
+ gem update --system
72
+ gem install fir-cli
73
+ ```
74
+
75
+ ## 使用说明
76
+
77
+ ### fir help 使用说明
78
+
79
+ `fir help` 命令不仅可以运行在 `fir` 主命令上, 还可以运行在相应子命令上查看相关的帮助
80
+
81
+ ```sh
82
+ $ fir help
70
83
  Commands:
71
84
  fir build_apk BUILD_DIR # Build Android app (alias: `ba`).
72
85
  fir build_ipa BUILD_DIR [options] [settings] # Build iOS app (alias: `bi`).
@@ -75,7 +88,7 @@ Commands:
75
88
  fir login # Login fir.im (aliases: `l`).
76
89
  fir mapping MAPPING_FILE_PATH # Upload app mapping file to BugHD.com (aliases: `m`).
77
90
  fir me # Show current user info if user is logined.
78
- fir publish APP_FILE_PATH # Publish iOS/Android app to fir.im, support ipa/apk file (aliases: `p`).
91
+ fir publish APP_FILE_PATH # Publish iOS/Android app to fir.im, support ipa/apk file (aliases: `...
79
92
  fir upgrade # Upgrade fir-cli and quit (aliases: `u`).
80
93
  fir version # Show fir-cli version number and quit (aliases: `v`).
81
94
 
@@ -86,167 +99,136 @@ Options:
86
99
  # Default: true
87
100
  -q, [--quiet], [--no-quiet] # Silence commands
88
101
  -h, [--help], [--no-help] # Show this help message and quit
89
-
90
-
91
- Options:
92
- -T, [--token=TOKEN] # User's API Token at FIR.im
93
- -L, [--logfile=LOGFILE] # Path to writable logfile
94
- -V, [--verbose], [--no-verbose] # Show verbose
95
- # Default: true
96
- -q, [--quiet], [--no-quiet] # Silence commands
97
- -h, [--help], [--no-help] # Show this help message and quit
98
102
  ```
99
-
100
- ### 参数说明
103
+ #### 全局参数说明
101
104
 
102
105
  - `alias <short command>` 意味着可以用 alias 别名来代替该指令, 例如 `fir b`
103
- - `-T` 用户在 fir.im 上的 api_token, `publish` 需要使用此参数
106
+ - `-T` 用户在 fir.im 上的 api_token
104
107
  - `-L` 指定 fir-cli 的输出 log, 默认为 STDOUT
105
108
  - `-V` Verbose, 默认为输出所有信息( INFO 和 ERROR), 如果设置 `--no-verbose`, 则只输出 ERROR 信息
106
109
  - `-q` 静默模式, 默认关闭
107
- - `-h` 查看帮助
110
+ - `-h` 查看相关命令帮助
108
111
 
109
- ### 发布一个应用
112
+ ### fir publish 使用说明
110
113
 
111
- 输入下面的指令便可轻松发布应用, 支持 ipa 和 apk 文件
114
+ fir publish 命令可以轻松发布应用到 fir.im, 支持 ipa 和 apk 文件.
112
115
 
113
- ```shell
114
- $ fir p path/to/application -T YOUR_FIR_TOKEN
116
+ ```sh
117
+ $ fir publish path/to/application -T YOUR_FIR_TOKEN
115
118
  ```
116
119
 
117
- 如果在此之前, 已经使用 `fir login` 命令登录过, 则可省略 `-T` 参数
118
-
119
- ```shell
120
- I, [2015-08-26T10:08:35.447209 #6774] INFO -- : Publishing app.......
121
- I, [2015-08-26T10:08:35.447334 #6774] INFO -- : ✈ -------------------------------------------- ✈
122
- I, [2015-08-26T10:08:35.514378 #6774] INFO -- : Fetching xxxx@fir.im uploading info......
123
- I, [2015-08-26T10:08:35.692616 #6774] INFO -- : Uploading app......
124
- I, [2015-08-26T10:08:36.920226 #6774] INFO -- : Updating devices info......
125
- I, [2015-08-26T10:08:37.075149 #6774] INFO -- : ✈ -------------------------------------------- ✈
126
- I, [2015-08-26T10:08:37.075238 #6774] INFO -- : Fetch app info from fir.im
127
- I, [2015-08-26T10:08:37.235071 #6774] INFO -- : Published succeed: http://fir.im/xxxx
128
- I, [2015-08-26T10:08:37.235155 #6774] INFO -- :
129
- ```
120
+ 如果需要上传 changelog, 自定义 short 地址, 上传符号表, 生成二维码等功能, 可以使用 `fir publish -h`查看相应的帮助
130
121
 
131
- ### 方便一点
122
+ ### fir login 使用说明
132
123
 
133
- 如果觉得每次都输入 `-T` 很不方便, 那么可使用 `login` 命令
124
+ 如果觉得每次上传都输入 `-T` 很不方便, 那么可使用 `login` 命令
134
125
 
135
- ```shell
136
- $ fir l
126
+ ```sh
127
+ $ fir login
137
128
  ```
138
129
 
139
- 这时系统会提示输入用户 token, 用户 token 可在 **[这里](http://fir.im/user/info)** 查看
130
+ 这时系统会提示输入用户 API token, 用户的 API token 可在 **[fir.im 应用管理页](http://fir.im/apps)** 的右上角查看
140
131
 
141
- ```shell
132
+ ```sh
142
133
  Please enter your fir.im API Token:
143
134
  I, [2015-08-26T10:10:28.235295 #6833] INFO -- : Login succeed, previous user's email: xxx@xxx.com
144
135
  I, [2015-08-26T10:10:28.245083 #6833] INFO -- : Login succeed, current user's email: xxx@xxx.com
145
136
  I, [2015-08-26T10:10:28.245152 #6833] INFO -- :
146
137
  ```
147
138
 
148
- ### 编译并获得 ipa
149
- > 该指令 `build_ipa` 对 `xcodebuild` 原生指令进行了封装, 将常用的参数名简化, 支持全部的自带参数及设置, 同时输出符号表 .dSYM 文件.
139
+ ### fir build 使用说明
150
140
 
151
- ```
152
- $ fir build_ipa path/to/project -o path/to/output
153
- I, [2015-08-26T10:11:12.105103 #7167] INFO -- : Building......
154
- I, [2015-08-26T10:11:12.105175 #7167] INFO -- : ✈ -------------------------------------------- ✈
155
- I, [2015-08-26T10:11:18.500887 #7167] INFO -- : Build settings from command line:
141
+ 该指令分为两个不同的指令, `build_ipa` 和 `build_apk`, 可以编译 ipa 及 apk 应用并上传到 fir.im
142
+
143
+ #### 编译 ipa
156
144
 
157
- ..........
145
+ `build_ipa` 对 `xcodebuild` 原生指令进行了封装, 将常用的参数名简化, 支持全部的自带参数及设置, 同时输出符号表 dSYM 文件.
158
146
 
159
- I, [2015-08-26T10:11:18.535498 #7167] INFO -- : Build Success
160
- I, [2015-08-26T10:11:18.535704 #7167] INFO -- :
147
+ 编译 project
148
+
149
+ ```
150
+ $ fir build_ipa path/to/project -o path/to/output
161
151
  ```
162
152
 
163
- ### 复杂一点
153
+ 编译 workspace
164
154
 
165
- ```shell
166
- $ fir bi path/to/workspace -o path/to/output -w -C Release -t allTargets GCC_PREPROCESSOR_DEFINITIONS="FOO=bar"
155
+ ```sh
156
+ $ fir build_ipa path/to/workspace -o path/to/output -w -C Release -t allTargets GCC_PREPROCESSOR_DEFINITIONS="FOO=bar"
167
157
  ```
168
158
 
169
159
  该指令在指向的目录中,找到第一个 workspace 文件,对其进行编译。使用 `Release` 设置,编译策略为 `allTargets`,同时设置了预编译参数 `FOO`。
170
160
 
171
- ### 编译用 CocoaPods 做依赖管理的 .ipa包
161
+ 编译用 CocoaPods 做依赖管理的 .ipa
172
162
 
173
- ```shell
174
- $ fir bi path/to/workspace -w -S <scheme name>
163
+ ```sh
164
+ $ fir build_ipa path/to/workspace -w -S <scheme name>
175
165
  ```
176
166
 
177
- ### 编译用 Gradle 打包 apk
167
+ #### 编译用 Gradle 打包 apk
178
168
 
179
- ```shell
180
- $ fir ba path/to/project
169
+ ```sh
170
+ $ fir build_apk path/to/project
181
171
  ```
182
172
 
183
- ### 一步, 从源代码到 fir.im
184
- > 只需要输入 -p -T
173
+ #### 编译并且上传至 fir.im
185
174
 
186
- ```shell
187
- $ fir build_ipa path/to/project -o path/to/output -p -T YOUR_FIR_TOKEN
188
- I, [2015-08-26T10:11:59.687221 #7273] INFO -- : Building......
189
- I, [2015-08-26T10:11:59.687301 #7273] INFO -- : ✈ -------------------------------------------- ✈
190
- I, [2015-08-26T10:12:00.868774 #7273] INFO -- : Build settings from command line:
175
+ 只需要输入 `-p -T` 即可
191
176
 
192
- ..........
193
-
194
- I, [2015-08-26T10:12:00.893819 #7273] INFO -- : Build Success
195
- I, [2015-08-26T10:12:00.894051 #7273] INFO -- :
196
- I, [2015-08-26T10:12:01.026832 #7273] INFO -- : Publishing app.......
197
- I, [2015-08-26T10:12:01.026905 #7273] INFO -- : ✈ -------------------------------------------- ✈
198
- I, [2015-08-26T10:12:01.098759 #7273] INFO -- : Fetching im.fir.OnlyiPad@fir.im uploading info......
199
- I, [2015-08-26T10:12:01.249832 #7273] INFO -- : Uploading app......
200
- I, [2015-08-26T10:12:01.859718 #7273] INFO -- : Updating devices info......
201
- I, [2015-08-26T10:12:02.015517 #7273] INFO -- : ✈ -------------------------------------------- ✈
202
- I, [2015-08-26T10:12:02.015588 #7273] INFO -- : Fetch app info from fir.im
203
- I, [2015-08-26T10:12:02.210391 #7273] INFO -- : Published succeed: http://fir.im/xxxx
204
- I, [2015-08-26T10:12:02.210459 #7273] INFO -- :
205
- I, [2015-08-26T10:12:02.210520 #7273] INFO -- :
177
+ ```sh
178
+ $ fir build_ipa/build_apk path/to/project -o path/to/output -p -T YOUR_FIR_TOKEN -c YOUR_CHANGELOG
206
179
  ```
207
180
 
208
- ### 上传符号表
181
+ 如果需要更详细的使用说明, 可以使用 `fir build_ipa/build_apk -h`查看相应的帮助
182
+
183
+ ### fir mapping 使用说明
209
184
 
210
- 有以下三种方式上传符号表至 [BugHD.com](http://bughd.com) 所对应的项目, 目前已经支持 dSYM 和 txt 两种格式的符号表文件上传
185
+ 该指令可以上传符号表至 [BugHD.com](http://bughd.com) 所对应的项目, 目前已经支持 dSYM 和 txt 两种格式的符号表文件上传, 有以下三种方法上传:
211
186
 
212
187
  > 指定 version 和 build 上传:
213
188
 
214
- ```shell
189
+ ```sh
215
190
  $ fir m <mapping file path> -P <bughd project id> -v <app version> -b <app build> -T <your api token>
216
191
  ```
217
192
 
218
193
  > 在 publish 的时候自动上传:
219
194
 
220
- ```shell
195
+ ```sh
221
196
  $ fir p <app file path> -m <mapping file path> -P <bughd project id> -T <your api token>
222
197
  ```
223
198
  > 在 build_ipa 的时候自动上传:
224
199
 
225
- ```shell
200
+ ```sh
226
201
  $ fir b <project dir> -P <bughd project id> -M -p -T <your api token>
227
202
  ```
228
203
 
229
- ## 需要帮助?
204
+ 如果需要更详细的使用说明, 可以使用 `fir mapping -h`查看相应的帮助
230
205
 
231
- 输入以下指令获取全面功能介绍
206
+ ### fir me 使用说明
232
207
 
233
- ```shell
234
- $ fir -h
235
- $ fir publish -h
236
- ```
208
+ 该指令可以查看当前使用者
237
209
 
238
- 如果还有疑问随时发邮件至 [fir-cli](mailto: dev@fir.im)
210
+ ```sh
211
+ $ fir me
212
+ I, [2015-11-02T03:03:04.933645 #29886] INFO -- : Login succeed, current user's email: xxxx
213
+ I, [2015-11-02T03:03:04.933756 #29886] INFO -- : Login succeed, current user's name: xxxx
214
+ I, [2015-11-02T03:03:04.933787 #29886] INFO -- :
215
+ ```
239
216
 
240
- ## 永远使用最新功能
217
+ ### fir upgrade 使用说明
241
218
 
242
- 下面的指令会自动更新 fir-cli
219
+ 该指令用于升级最新版本的 fir-cli
243
220
 
244
- ```shell
221
+ ```sh
245
222
  $ fir upgrade
246
223
  ```
247
224
 
248
- 随时更新以使用最新功能
249
-
250
225
  ## 提交反馈
251
226
 
252
- [使用 github issue 即可](https://github.com/FIRHQ/fir-cli/issues)
227
+ 直接使用 Github [Issue](https://github.com/FIRHQ/fir-cli/issues) 即可.
228
+
229
+ ## 捐赠支持
230
+
231
+ 如果你觉得 fir-cli 对你有所帮助, 欢迎打赏支持作者:smile:
232
+
233
+ ![](http://7rf35s.com1.z0.glb.clouddn.com/coffee.png)
234
+
data/fir-cli.gemspec CHANGED
@@ -27,8 +27,8 @@ Gem::Specification.new do |spec|
27
27
  /_/ /___/_/ |_| \____/_____/___/
28
28
 
29
29
  ## 更新记录
30
- ### fir-cli 1.3.5
31
- - 修复转换 iconbug
30
+ ### fir-cli 1.3.6
31
+ - 增加 -n 参数自定义 build 后 ipa, apk name
32
32
  - 详细更新记录, 请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG
33
33
  - [fir-cli](https://github.com/FIRHQ/fir-cli) 已经开源
34
34
  - 欢迎 fork, issue 和 pull request
data/lib/fir/cli.rb CHANGED
@@ -30,6 +30,7 @@ module FIR
30
30
  method_option :output, type: :string, aliases: '-o', desc: 'IPA output path, the default is: BUILD_DIR/fir_build_ipa'
31
31
  method_option :publish, type: :boolean, aliases: '-p', desc: 'true/false if publish to fir.im'
32
32
  method_option :short, type: :string, aliases: '-s', desc: 'Set custom short link if publish to fir.im'
33
+ method_option :name, type: :string, aliases: '-n', desc: 'Set custom ipa name when builded'
33
34
  method_option :changelog, type: :string, aliases: '-c', desc: 'Set changelog if publish to fir.im'
34
35
  method_option :qrcode, type: :boolean, aliases: '-Q', desc: 'Generate qrcode'
35
36
  method_option :mapping, type: :boolean, aliases: '-M', desc: 'true/false if upload app mapping file to BugHD.com'
@@ -54,6 +55,7 @@ module FIR
54
55
  method_option :output, type: :string, aliases: '-o', desc: 'APK output path, the default is: BUILD_DIR/build/outputs/apk'
55
56
  method_option :publish, type: :boolean, aliases: '-p', desc: 'true/false if publish to fir.im'
56
57
  method_option :short, type: :string, aliases: '-s', desc: 'Set custom short link if publish to fir.im'
58
+ method_option :name, type: :string, aliases: '-n', desc: 'Set custom apk name when builded'
57
59
  method_option :changelog, type: :string, aliases: '-c', desc: 'Set changelog if publish to fir.im'
58
60
  method_option :qrcode, type: :boolean, aliases: '-Q', desc: 'Generate qrcode'
59
61
  def build_apk(*args)
@@ -40,7 +40,12 @@ module FIR
40
40
  check_no_output_apk
41
41
 
42
42
  apk_info = FIR.apk_info(@builded_apk)
43
- apk_name = "#{apk_info[:name]}-#{apk_info[:version]}-Build-#{apk_info[:build]}"
43
+
44
+ if @name.blank?
45
+ apk_name = "#{apk_info[:name]}-#{apk_info[:version]}-Build-#{apk_info[:build]}"
46
+ else
47
+ apk_name = @name
48
+ end
44
49
 
45
50
  FileUtils.cp(@builded_apk, "#{@output_path}/#{apk_name}.apk")
46
51
  end
@@ -9,6 +9,7 @@ module FIR
9
9
  @token = options[:token] || current_token
10
10
  @changelog = options[:changelog].to_s
11
11
  @short = options[:short].to_s
12
+ @name = options[:name].to_s
12
13
  @proj = options[:proj].to_s
13
14
  @export_qrcode = options[:qrcode]
14
15
  end
@@ -75,9 +75,14 @@ module FIR
75
75
 
76
76
  def rename_ipa_and_dsym
77
77
  ipa_info = FIR.ipa_info(@temp_ipa)
78
- ipa_name = "#{ipa_info[:name]}-#{ipa_info[:version]}-build-#{ipa_info[:build]}"
79
78
  dsym_name = "#{@output_path}/#{ipa_info[:name]}.app.dSYM"
80
79
 
80
+ if @name.blank?
81
+ ipa_name = "#{ipa_info[:name]}-#{ipa_info[:version]}-build-#{ipa_info[:build]}"
82
+ else
83
+ ipa_name = @name
84
+ end
85
+
81
86
  @builded_app_path = "#{@output_path}/#{ipa_name}.ipa"
82
87
 
83
88
  FileUtils.mv(@temp_ipa, @builded_app_path, force: true)
data/lib/fir/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module FIR
4
- VERSION = '1.3.5'
4
+ VERSION = '1.3.6'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fir-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - NaixSpirit
@@ -149,6 +149,7 @@ files:
149
149
  - ".travis.yml"
150
150
  - CHANGELOG
151
151
  - Gemfile
152
+ - Home.md
152
153
  - LICENSE.txt
153
154
  - README.md
154
155
  - Rakefile
@@ -198,9 +199,9 @@ metadata: {}
198
199
  post_install_message: "\n ______________ ________ ____\n /
199
200
  ____/ _/ __ \\ / ____/ / / _/\n / /_ / // /_/ /_____/ / / / /
200
201
  /\n / __/ _/ // _, _/_____/ /___/ /____/ /\n /_/ /___/_/ |_| \\____/_____/___/\n\n
201
- \ ## 更新记录\n ### fir-cli 1.3.5\n - 修复转换 iconbug\n - 详细更新记录, 请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG\n
202
- \ - [fir-cli](https://github.com/FIRHQ/fir-cli) 已经开源\n - 欢迎 fork, issue 和 pull
203
- request\n "
202
+ \ ## 更新记录\n ### fir-cli 1.3.6\n - 增加 -n 参数自定义 build 后 ipa, apk name\n - 详细更新记录,
203
+ 请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG\n - [fir-cli](https://github.com/FIRHQ/fir-cli)
204
+ 已经开源\n - 欢迎 fork, issue 和 pull request\n "
204
205
  rdoc_options: []
205
206
  require_paths:
206
207
  - lib