fastlane-plugin-rustored 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 280cab221b564f9533f0e047b36e60f816bda16b7967638fe22ff5b4ec72f0dd
4
- data.tar.gz: 2c2e092e3d2832b44d225e913bd39f5eba8a9964d5d944d69ef6d9e4bfa80deb
3
+ metadata.gz: e6c803f43cb99f9a9b6a73af925c53e4e66aaa9b4609856873d11c0c187384f7
4
+ data.tar.gz: df043511b75ec03a565cd2b1cef586019c42a44c57036aea56e4c00572ef8f18
5
5
  SHA512:
6
- metadata.gz: becad129986cfa3924759a75b674d313442bf5b2d253d7a6cceed694ad2315c53a358a15903fa0ea168a9f8e84b9aecb905909cbc7d98f071c6d45a6f72c8e3c
7
- data.tar.gz: 1d3b6750875546b25a3236f9373bd51d9830f856caf713f026c9c6fc1bae409d717682af03eb938ab8be87b4a7bcd333e9d36b16cd49fb5bb2c3a774c28b75d0
6
+ metadata.gz: 2e797187bd06c5b623026943c0599677f4a282307e97f65ffd055c37985ee279ef1faddf47a105bd6cbc2830c9de3470546d4d7c34849da6e5f17ce9540acdc8
7
+ data.tar.gz: e9df9811c147d34f58313f4ae9e2000dedc5d3f815c5be4111d1c8d0bbee76ad548929103f6332920fe6397f6cbace3a0d53cecac4ae907d964d2f5c98f2919f
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # fastlane-rustored
1
+ # rustored
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-rustored)
2
4
 
3
5
  Fastlane plugin for publishing Android builds to RuStore.
4
6
 
@@ -18,7 +20,7 @@ Publishes an AAB file.
18
20
  rustored_publish_aab(
19
21
  token: ENV["RUSTORE_TOKEN"],
20
22
  package_name: "com.example.app",
21
- version_id: "123456",
23
+ version_id: 123456,
22
24
  aab_path: "app/build/outputs/bundle/release/app-release.aab"
23
25
  )
24
26
  ```
@@ -31,7 +33,7 @@ Publishes an APK file.
31
33
  rustored_publish_apk(
32
34
  token: ENV["RUSTORE_TOKEN"],
33
35
  package_name: "com.example.app",
34
- version_id: "123456",
36
+ version_id: 123456,
35
37
  apk_path: "app/build/outputs/apk/release/app-release.apk",
36
38
  services_type: "Unknown",
37
39
  is_main_apk: true
@@ -24,7 +24,7 @@ module Fastlane
24
24
  env_name: "RUSTORE_VERSION_ID",
25
25
  description: "The version id of the app you want to publish",
26
26
  optional: false,
27
- type: String
27
+ type: Integer
28
28
  )
29
29
  ]
30
30
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Rustored
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-rustored
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - 06ED