firim 0.2.6 → 0.2.7
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/README.md +13 -7
- data/lib/firim/runner.rb +3 -0
- data/lib/firim/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 339e2d1d86ea02e446677222594455558c3fa6876d9f823e69adb6928956fa72
|
|
4
|
+
data.tar.gz: 42e5e8010082ec75f884e22b2a1104b84de14b5c5ec2dacd6481df8e0cfd21d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0caec2a42a9f3fc5554d365dadb5ddd3630f760a37b3ab9aa7bed1b00bb7348a194d35c16104081d20f846326d8954a9a12b274880dbfaa9a994bdf6f160150
|
|
7
|
+
data.tar.gz: 9eab57e4111869ca0396fc7d64b843c90472698f4bb4504550fa0ec40eec61a940c6f54a52bd130e24a6c0a4953933d270535d82496ca4b367ab21304bb5a745
|
data/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
***Important***
|
|
2
2
|
|
|
3
|
-
***For the reason of fir.im had changed the Base URL, pls set `firim_api_url` to `
|
|
3
|
+
***For the reason of fir.im had changed the Base URL, pls set `firim_api_url` to `https://fir-api.fircli.cn/` or `https://api.bq04.com`.*** [issue](https://github.com/whlsxl/firim/issues/26)
|
|
4
4
|
|
|
5
|
-
From v0.2.5, the default `firim_api_url` set to `
|
|
5
|
+
From v0.2.5, the default `firim_api_url` set to `https://api.bq04.com`.
|
|
6
6
|
|
|
7
|
+
From firim v0.2.6, add show download url in terminal. [issue](https://github.com/whlsxl/firim/issues/32)
|
|
7
8
|
# Firim
|
|
8
9
|
|
|
9
10
|
Firim is a command tool to directly upload ipa and change app infomation on fir.im. fir.im is a Beta APP host website, you can upload ipa for AdHoc or InHouse distribution for testing.
|
|
@@ -28,7 +29,7 @@ Or install it yourself as:
|
|
|
28
29
|
|
|
29
30
|
* `cd [your_project_folder]`
|
|
30
31
|
* `firim init`
|
|
31
|
-
* Enter your fir.im API Token (From [Fir.im](
|
|
32
|
+
* Enter your fir.im API Token (From [Fir.im](https://fir.im/apps))
|
|
32
33
|
* `firim -i [your_ipa_path]`
|
|
33
34
|
|
|
34
35
|
# Usage
|
|
@@ -45,6 +46,12 @@ Upload with icon ***NOTICE: Icon must be jpg format***
|
|
|
45
46
|
|
|
46
47
|
Use `firim_api_url` to set API URL, if `fir.im` change the Base URL. default is `https://api.fir.im`.
|
|
47
48
|
|
|
49
|
+
After upload app to fir.im, firim will export some environment variables.
|
|
50
|
+
|
|
51
|
+
* `FIRIM_APP_SHORT` app's short path
|
|
52
|
+
* `FIRIM_APP_NAME` app's name
|
|
53
|
+
* `FIRIM_APP_URL` the download page of the app
|
|
54
|
+
|
|
48
55
|
# Assign API Token
|
|
49
56
|
|
|
50
57
|
There are three ways to assign Firim API Token
|
|
@@ -72,7 +79,6 @@ The gem is available as open source under the terms of the [MIT License](http://
|
|
|
72
79
|
|
|
73
80
|
# TODO
|
|
74
81
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
* force reset icon
|
|
82
|
+
- [ ] Generate a web page show all the app's link and infomations
|
|
83
|
+
- [x] Show the app list, and export all app infomations to a file
|
|
84
|
+
- [ ] force reset icon
|
data/lib/firim/runner.rb
CHANGED
|
@@ -64,6 +64,9 @@ module Firim
|
|
|
64
64
|
write_app_info_to_file
|
|
65
65
|
options = @app_info
|
|
66
66
|
options[:download_page_url] = download_url
|
|
67
|
+
ENV["FIRIM_APP_URL"] = download_url
|
|
68
|
+
ENV["FIRIM_APP_NAME"] = options["name"]
|
|
69
|
+
ENV["FIRIM_APP_SHORT"] = options["short"]
|
|
67
70
|
FastlaneCore::PrintTable.print_values(config: options, title: "#{@app_info["name"]}'s' App Info")
|
|
68
71
|
end
|
|
69
72
|
|
data/lib/firim/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: firim
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- whlsxl
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-09-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane
|