fir-cli 1.6.12 → 1.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +3 -2
- data/fir-cli.gemspec +2 -1
- data/lib/fir/cli.rb +1 -19
- data/lib/fir/util/publish.rb +3 -0
- data/lib/fir/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85d5471da637792a85904961eaa9e21db60e65c950430dca032e1ace30bd02e8
|
|
4
|
+
data.tar.gz: 397ddd58d70a640c09812654faee8e983e1c391fcb06d9505e63698261cf46d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9288592cdbee544d3437fad3b126dce31f9be83985ee0254c96b7bf2873c8cb989b57e076367df70d251c2e7dd44a3bcc44b8f065f26a558162a1a0eefd41729
|
|
7
|
+
data.tar.gz: 296664dca956d645210e6a8eddbed4663c1529c6a63837ce996b0f1cca41faf2843b2cf23015e7ff52cd0ce17993aaa12af2adc64bd9a409929bdada88960418
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -58,9 +58,10 @@ fir help
|
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
## 最近更新
|
|
61
|
+
- (1.6.13) 上传图标逻辑修改
|
|
62
|
+
- (1.6.12) 修复了部分机器没有默认安装 byebug 的问题
|
|
63
|
+
- (1.6.11) 变化了 ruby gem 仓库地址
|
|
61
64
|
- (1.6.10) 增加显示release_id 以及 app_id
|
|
62
|
-
- (1.6.9) 取消了依赖 CFPropertyList 的具体版本号
|
|
63
|
-
- (1.6.8) 取消了远端回调, 改为本地callback
|
|
64
65
|
|
|
65
66
|
## 提交反馈
|
|
66
67
|
|
data/fir-cli.gemspec
CHANGED
|
@@ -26,7 +26,8 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
/ __/ _/ // _, _/_____/ /___/ /____/ /
|
|
27
27
|
/_/ /___/_/ |_| \____/_____/___/
|
|
28
28
|
|
|
29
|
-
## 更新记录
|
|
29
|
+
## 更新记录
|
|
30
|
+
- (1.6.13) 上传图标逻辑修改
|
|
30
31
|
- (1.6.12) 修复了部分机器没有默认安装 byebug 的问题
|
|
31
32
|
- (1.6.11) 变化了 ruby gem 仓库地址
|
|
32
33
|
- (1.6.10) 增加显示release_id 以及 app_id
|
data/lib/fir/cli.rb
CHANGED
|
@@ -8,7 +8,7 @@ module FIR
|
|
|
8
8
|
class_option :quiet, type: :boolean, aliases: '-q', desc: 'Silence commands'
|
|
9
9
|
class_option :help, type: :boolean, aliases: '-h', desc: 'Show this help message and quit'
|
|
10
10
|
|
|
11
|
-
desc 'build_ipa BUILD_DIR [options] [settings]', 'Build iOS app (alias: `bi`).'
|
|
11
|
+
desc '(EXPIRED, PLEASE use fastlane instead) build_ipa BUILD_DIR [options] [settings]', 'Build iOS app (alias: `bi`).'
|
|
12
12
|
long_desc <<-LONGDESC
|
|
13
13
|
`build_ipa` command will auto build your project/workspace to an ipa package
|
|
14
14
|
and it also can auto publish your built ipa to fir.im if use `-p` option.
|
|
@@ -134,24 +134,6 @@ module FIR
|
|
|
134
134
|
FIR.me
|
|
135
135
|
end
|
|
136
136
|
|
|
137
|
-
desc 'mapping MAPPING_FILE_PATH', 'Upload app mapping file to BugHD.com (aliases: `m`).'
|
|
138
|
-
long_desc <<-LONGDESC
|
|
139
|
-
`mapping` command will upload your app's mapping file to BugHD.com if you have the same app/project in BugHD.com.
|
|
140
|
-
|
|
141
|
-
Example:
|
|
142
|
-
|
|
143
|
-
$ fir m <mapping file path> -P <bughd project id> -v <app version> -b <app build> -T <your fir api token>
|
|
144
|
-
LONGDESC
|
|
145
|
-
map 'm' => :mapping
|
|
146
|
-
method_option :proj, type: :string, aliases: '-P', desc: 'Project id in BugHD.com'
|
|
147
|
-
method_option :version, type: :string, aliases: '-v', desc: 'App version'
|
|
148
|
-
method_option :build, type: :string, aliases: '-b', desc: 'App build'
|
|
149
|
-
def mapping(*args)
|
|
150
|
-
prepare :mapping
|
|
151
|
-
|
|
152
|
-
FIR.mapping(*args, options)
|
|
153
|
-
end
|
|
154
|
-
|
|
155
137
|
desc 'upgrade', 'Upgrade fir-cli and quit (aliases: `u`).'
|
|
156
138
|
map 'u' => :upgrade
|
|
157
139
|
def upgrade
|
data/lib/fir/util/publish.rb
CHANGED
data/lib/fir/version.rb
CHANGED
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.6.
|
|
4
|
+
version: 1.6.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- NaixSpirit
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2019-02-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -262,9 +262,9 @@ metadata: {}
|
|
|
262
262
|
post_install_message: "\n ______________ ________ ____\n /
|
|
263
263
|
____/ _/ __ \\ / ____/ / / _/\n / /_ / // /_/ /_____/ / / / /
|
|
264
264
|
/\n / __/ _/ // _, _/_____/ /___/ /____/ /\n /_/ /___/_/ |_| \\____/_____/___/\n\n
|
|
265
|
-
\ ##
|
|
266
|
-
|
|
267
|
-
|
|
265
|
+
\ ## 更新记录\n - (1.6.13) 上传图标逻辑修改\n - (1.6.12) 修复了部分机器没有默认安装 byebug 的问题\n - (1.6.11)
|
|
266
|
+
变化了 ruby gem 仓库地址\n - (1.6.10) 增加显示release_id 以及 app_id\n - (1.6.9) 取消了依赖 cfpropertylist
|
|
267
|
+
的具体版本号\n - (1.6.8) 取消了远端回调, 改为本地callback\n - (1.6.8) fir-cli 也支持了私有部署模式\n - [fir-cli](https://github.com/firhq/fir-cli)
|
|
268
268
|
已经开源\n - 欢迎 fork, issue 和 pull request\n "
|
|
269
269
|
rdoc_options: []
|
|
270
270
|
require_paths:
|