fir-cli 1.6.12 → 1.6.13

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
  SHA256:
3
- metadata.gz: d56b947636a4f7665b1412338a361c6e01766e3f3d95c32859d065f489b9ff2c
4
- data.tar.gz: 611c13e3a47aae76002f1f029f44f53399dc2005ed2e53f9d64d8148396c245f
3
+ metadata.gz: 85d5471da637792a85904961eaa9e21db60e65c950430dca032e1ace30bd02e8
4
+ data.tar.gz: 397ddd58d70a640c09812654faee8e983e1c391fcb06d9505e63698261cf46d8
5
5
  SHA512:
6
- metadata.gz: 7f8fa5ba5e1952004db764a5a665abfb9eee0eab6f12c1466f9b6ff113abb29a150730ca136afc5d65619e6f4b09edfca27839afb2a2fbbaeb8eb172c5f57481
7
- data.tar.gz: 7ee596657707702ca7a98850800ea7be7a3b87d0869e53dbdef2a538d3fe108234de1904d6d1550b935e07ad1154c2f962dec5165fc0a41d3651a180704e0471
6
+ metadata.gz: 9288592cdbee544d3437fad3b126dce31f9be83985ee0254c96b7bf2873c8cb989b57e076367df70d251c2e7dd44a3bcc44b8f065f26a558162a1a0eefd41729
7
+ data.tar.gz: 296664dca956d645210e6a8eddbed4663c1529c6a63837ce996b0f1cca41faf2843b2cf23015e7ff52cd0ce17993aaa12af2adc64bd9a409929bdada88960418
data/.gitignore CHANGED
@@ -24,3 +24,4 @@ Gemfile.lock
24
24
 
25
25
  .idea/
26
26
  lib/.byebug_history
27
+ TAGS
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
@@ -217,6 +217,9 @@ module FIR
217
217
  end
218
218
 
219
219
  def convert_icon(origin_path)
220
+ # 兼容性不太好, 蔽掉转化图标
221
+ return origin_path
222
+
220
223
  logger.info "Converting app's icon......"
221
224
 
222
225
  if @app_info[:type] == 'ios'
data/lib/fir/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module FIR
4
- VERSION = '1.6.12'
4
+ VERSION = '1.6.13'
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.6.12
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: 2018-09-14 00:00:00.000000000 Z
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
- \ ## 更新记录 \n - (1.6.12) 修复了部分机器没有默认安装 byebug 的问题\n - (1.6.11) 变化了 ruby gem 仓库地址\n
266
- \ - (1.6.10) 增加显示release_id 以及 app_id\n - (1.6.9) 取消了依赖 cfpropertylist 的具体版本号\n
267
- \ - (1.6.8) 取消了远端回调, 改为本地callback\n - (1.6.8) fir-cli 也支持了私有部署模式\n - [fir-cli](https://github.com/firhq/fir-cli)
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: