fir-cli 1.3.3 → 1.3.4
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/CHANGELOG +3 -0
- data/fir-cli.gemspec +2 -1
- data/lib/fir/util/publish.rb +6 -5
- data/lib/fir/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40ee16eab22f396737b2b5df0c7a5f9f1d17eae9
|
|
4
|
+
data.tar.gz: 8e6ddc3b9bd00b151f8f3aea69aea221f5fa33d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 691ee0f6f1b4e79c501cb115c6525a60cc073249a6c79a3040ac40fe2e1144a815b0e65cedf409e8f1c401b921820be615e885662b3ecc80d5e62088f2e3345c
|
|
7
|
+
data.tar.gz: 63aa7c7cbda4cd0521eafc7fe03dd3a2e16709e9315c399dadd23c177761e3b943f57f54fe7575ad6c53a6790f4be1918933300f6ab6afa189305e85b32c40a4
|
data/CHANGELOG
CHANGED
data/fir-cli.gemspec
CHANGED
|
@@ -27,8 +27,9 @@ Gem::Specification.new do |spec|
|
|
|
27
27
|
/_/ /___/_/ |_| \____/_____/___/
|
|
28
28
|
|
|
29
29
|
## 更新记录
|
|
30
|
-
### fir-cli 1.3.
|
|
30
|
+
### fir-cli 1.3.4
|
|
31
31
|
- 修正解析 inhouse 错误的现象
|
|
32
|
+
- 上传增加 distribution_name 信息
|
|
32
33
|
- 详细更新记录, 请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG
|
|
33
34
|
- [fir-cli](https://github.com/FIRHQ/fir-cli) 已经开源
|
|
34
35
|
- 欢迎 fork, issue 和 pull request
|
data/lib/fir/util/publish.rb
CHANGED
|
@@ -80,11 +80,12 @@ module FIR
|
|
|
80
80
|
token: @binary_cert[:token],
|
|
81
81
|
file: File.new(@file_path, 'rb'),
|
|
82
82
|
# Custom variables
|
|
83
|
-
'x:name'
|
|
84
|
-
'x:build'
|
|
85
|
-
'x:version'
|
|
86
|
-
'x:changelog'
|
|
87
|
-
'x:release_type'
|
|
83
|
+
'x:name' => @app_info[:display_name] || @app_info[:name],
|
|
84
|
+
'x:build' => @app_info[:build],
|
|
85
|
+
'x:version' => @app_info[:version],
|
|
86
|
+
'x:changelog' => @changelog,
|
|
87
|
+
'x:release_type' => @app_info[:release_type],
|
|
88
|
+
'x:distribution_name' => @app_info[:distribution_name]
|
|
88
89
|
}
|
|
89
90
|
end
|
|
90
91
|
|
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.3.
|
|
4
|
+
version: 1.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- NaixSpirit
|
|
@@ -196,9 +196,10 @@ metadata: {}
|
|
|
196
196
|
post_install_message: "\n ______________ ________ ____\n /
|
|
197
197
|
____/ _/ __ \\ / ____/ / / _/\n / /_ / // /_/ /_____/ / / / /
|
|
198
198
|
/\n / __/ _/ // _, _/_____/ /___/ /____/ /\n /_/ /___/_/ |_| \\____/_____/___/\n\n
|
|
199
|
-
\ ## 更新记录\n ### fir-cli 1.3.
|
|
200
|
-
|
|
201
|
-
request\n
|
|
199
|
+
\ ## 更新记录\n ### fir-cli 1.3.4\n - 修正解析 inhouse 错误的现象\n - 上传增加 distribution_name
|
|
200
|
+
信息\n - 详细更新记录, 请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG\n -
|
|
201
|
+
[fir-cli](https://github.com/FIRHQ/fir-cli) 已经开源\n - 欢迎 fork, issue 和 pull request\n
|
|
202
|
+
\ "
|
|
202
203
|
rdoc_options: []
|
|
203
204
|
require_paths:
|
|
204
205
|
- lib
|