ZReviewTender 1.0.8 → 1.1.0
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/lib/Models/Review.rb +10 -10
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e9e037f81e2be753fca051c97fa20514158cfed242e861c245b7ad587f88a18
|
4
|
+
data.tar.gz: 8cc90c6342e98a67e72108d016019bb3235e6e56abc00471fcf3a112ada459a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eced3db85ab6268c9c34fac6b58be74617f9c164a4e83a7c77ce20092ba01d08f37d4b402e3f873a15747bdae15dafe971ad42692058d1ead2376c0e48eda020
|
7
|
+
data.tar.gz: c4366c5c78a5d116bcc18ae15eb0b65637c7a1d464e7cd854e00b2a6ffcecc5394c3acd594abc4b9e93eb7e59a7196b08eb9062236d0f68a0f6bcc55c7875439
|
data/lib/Models/Review.rb
CHANGED
@@ -3,15 +3,15 @@ $lib = File.expand_path('../', File.dirname(__FILE__))
|
|
3
3
|
class Review
|
4
4
|
attr_accessor :platform, :id, :userName, :rating, :title, :body, :createdDateTimestamp, :url, :appVersion, :territory
|
5
5
|
def initialize(platform, id, userName, rating, title, body, createdDateTimestamp, url, appVersion, territory)
|
6
|
-
@platform = platform
|
7
|
-
@id = id
|
8
|
-
@userName = userName
|
9
|
-
@rating = rating
|
10
|
-
@title = title
|
11
|
-
@body = body
|
12
|
-
@createdDateTimestamp = createdDateTimestamp
|
13
|
-
@url = url
|
14
|
-
@appVersion = appVersion
|
15
|
-
@territory = territory
|
6
|
+
@platform = platform # 來源平台 android or apple
|
7
|
+
@id = id # review id
|
8
|
+
@userName = userName # reviewer
|
9
|
+
@rating = rating # 給予的 rating, 1~5
|
10
|
+
@title = title # review 標題 (android 無此資料)
|
11
|
+
@body = body # review 內容
|
12
|
+
@createdDateTimestamp = createdDateTimestamp # review 建立時間
|
13
|
+
@url = url # 前往 review 的連結 (apple 不提供後台指定到某個 review 的連結)
|
14
|
+
@appVersion = appVersion # app 版本號
|
15
|
+
@territory = territory # apple: 地區(TWN/JPN...), android: 語系(zh-tw/en...)
|
16
16
|
end
|
17
17
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ZReviewTender
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ZhgChgLi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-http
|
@@ -109,6 +109,6 @@ requirements: []
|
|
109
109
|
rubygems_version: 3.0.3
|
110
110
|
signing_key:
|
111
111
|
specification_version: 4
|
112
|
-
summary: ZReviewTender uses brand new App Store & Google Play API to
|
113
|
-
|
112
|
+
summary: ZReviewTender uses brand new App Store & Google Play API to fetch App reviews
|
113
|
+
and integration your workflow.
|
114
114
|
test_files: []
|