fir-cli 1.4.1 → 1.4.2
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/mapping.rb +1 -1
- data/lib/fir/version.rb +1 -1
- metadata +6 -7
- data/Home.md +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c5aaa79048cdd9302653521f0dffc50d8d99b72
|
|
4
|
+
data.tar.gz: f37644e5c1aae5a8e8b06a5f95cf2d43485623f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53bc5c71a2212132f95d66179d94521c3034a9b275c4d01e31c45ffb32baaa3bf7455c0dd5cd09658fb63115f8d270928cf9beccb1a10d0aa2914d4e9cbed2ed
|
|
7
|
+
data.tar.gz: 72fe38a3d232c7c341ca77c73756f8c8226b6015e07eed95ef2efa62fe11eba537dfe648501711b558a6cf1fcdfc3e32c962f855ae83100c3dff6366c9141ffd
|
data/CHANGELOG
CHANGED
data/fir-cli.gemspec
CHANGED
|
@@ -27,7 +27,8 @@ Gem::Specification.new do |spec|
|
|
|
27
27
|
/_/ /___/_/ |_| \____/_____/___/
|
|
28
28
|
|
|
29
29
|
## 更新记录
|
|
30
|
-
### fir-cli 1.4.
|
|
30
|
+
### fir-cli 1.4.2
|
|
31
|
+
- 修复手动提交 zip 格式符号表文件报错的 bug
|
|
31
32
|
- 支持远程 git 项目打包编译, enjoy.
|
|
32
33
|
- `$ fir bi/ba <git ssh url> -B develop -c <changelog> -p`
|
|
33
34
|
- 详细更新记录, 请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG
|
data/lib/fir/util/mapping.rb
CHANGED
|
@@ -61,7 +61,7 @@ module FIR
|
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
def generate_temp_mapping_file
|
|
64
|
-
tmp_file_path = "#{Dir.tmpdir}
|
|
64
|
+
tmp_file_path = "#{Dir.tmpdir}/fircli-#{File.basename(@file_path)}"
|
|
65
65
|
FileUtils.cp(@file_path, tmp_file_path)
|
|
66
66
|
|
|
67
67
|
tmp_file_path = zip_mapping_file(tmp_file_path)
|
data/lib/fir/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fir-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- NaixSpirit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-11-
|
|
11
|
+
date: 2015-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -151,7 +151,6 @@ files:
|
|
|
151
151
|
- ".travis.yml"
|
|
152
152
|
- CHANGELOG
|
|
153
153
|
- Gemfile
|
|
154
|
-
- Home.md
|
|
155
154
|
- LICENSE.txt
|
|
156
155
|
- README.md
|
|
157
156
|
- Rakefile
|
|
@@ -203,10 +202,10 @@ metadata: {}
|
|
|
203
202
|
post_install_message: "\n ______________ ________ ____\n /
|
|
204
203
|
____/ _/ __ \\ / ____/ / / _/\n / /_ / // /_/ /_____/ / / / /
|
|
205
204
|
/\n / __/ _/ // _, _/_____/ /___/ /____/ /\n /_/ /___/_/ |_| \\____/_____/___/\n\n
|
|
206
|
-
\ ## 更新记录\n ### fir-cli 1.4.
|
|
207
|
-
ssh url> -B develop -c <changelog> -p`\n - 详细更新记录,
|
|
208
|
-
|
|
209
|
-
request\n "
|
|
205
|
+
\ ## 更新记录\n ### fir-cli 1.4.2\n - 修复手动提交 zip 格式符号表文件报错的 bug\n - 支持远程 git 项目打包编译,
|
|
206
|
+
enjoy.\n - `$ fir bi/ba <git ssh url> -B develop -c <changelog> -p`\n - 详细更新记录,
|
|
207
|
+
请查看: https://github.com/FIRHQ/fir-cli/blob/master/CHANGELOG\n - [fir-cli](https://github.com/FIRHQ/fir-cli)
|
|
208
|
+
已经开源\n - 欢迎 fork, issue 和 pull request\n "
|
|
210
209
|
rdoc_options: []
|
|
211
210
|
require_paths:
|
|
212
211
|
- lib
|
data/Home.md
DELETED
|
File without changes
|