playstore_parser 1.0.1 → 1.0.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/Gemfile +1 -0
- data/README.md +3 -5
- data/lib/playstore_parser/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 087d2378d2a0de0542581277ea2ae45a8c18a564
|
4
|
+
data.tar.gz: 4b86eba728c7a4ddf50d5a344f6a9866f86518b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5642fbc52fa555c03e28afb46d6be9ee015620c1251e6122cd5842a6497de19f5d2ce99d6281bbf540d91573abc814e68cf9ff4f67e3d594330972d5d9057722
|
7
|
+
data.tar.gz: 6b9eaf1bc5a6815cee4c17d6066be2e4c8ff7a6e790b6726682c1788a15aa5b1d0aa4ac0f3f274df87b6bdc2362abe0dd28b49e84f59b25957fb661ecca6d62f
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
+
[](https://badge.fury.io/rb/playstore_parser)
|
1
2
|
# PlaystoreParser
|
2
3
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
4
|
+
Google Play Store APIs support the ProtoBuf ([Protocol Buffers](https://developers.google.com/protocol-buffers/)) format.
|
5
|
+
This gem parses all HTTP responses from Google Play Store in a ResponseWrapper Ruby object.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -23,8 +23,6 @@ Or install it yourself as:
|
|
23
23
|
## Usage
|
24
24
|
|
25
25
|
```ruby
|
26
|
-
require 'playstore_parser'
|
27
|
-
|
28
26
|
response = PlaystoreParser.parse(http_response)
|
29
27
|
```
|
30
28
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: playstore_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- avalz
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
version: '0'
|
94
94
|
requirements: []
|
95
95
|
rubyforge_project:
|
96
|
-
rubygems_version: 2.
|
96
|
+
rubygems_version: 2.5.1
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Google Play Store API response parser
|