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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a5eb06100f433875a6ec8458dd69029a8ff3b41e
4
- data.tar.gz: f45ed6f464a518f235a0f651bf69b978a63becf8
3
+ metadata.gz: 087d2378d2a0de0542581277ea2ae45a8c18a564
4
+ data.tar.gz: 4b86eba728c7a4ddf50d5a344f6a9866f86518b0
5
5
  SHA512:
6
- metadata.gz: 0ebcead98b371c507415084f7d8ff42e2737da68c4035beaac49ddbe64e7592aa759803ae5d004425b369911f1494f8d428ccb7074bcec8226ad68a5910f0022
7
- data.tar.gz: 66518470b2f481a5b7ceb40edd53519c7cc9a41539d00b9202c50f121a0ce96711e6ef8556006cb1e39592a46e26a45be7b05e5998617ef8b122333b497d16c6
6
+ metadata.gz: 5642fbc52fa555c03e28afb46d6be9ee015620c1251e6122cd5842a6497de19f5d2ce99d6281bbf540d91573abc814e68cf9ff4f67e3d594330972d5d9057722
7
+ data.tar.gz: 6b9eaf1bc5a6815cee4c17d6066be2e4c8ff7a6e790b6726682c1788a15aa5b1d0aa4ac0f3f274df87b6bdc2362abe0dd28b49e84f59b25957fb661ecca6d62f
data/Gemfile CHANGED
@@ -3,4 +3,5 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in playstore_parser.gemspec
4
4
  gemspec
5
5
 
6
+ gem 'ruby-protocol-buffers'
6
7
  require 'protocol_buffers'
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
+ [![Gem Version](https://badge.fury.io/rb/playstore_parser.svg)](https://badge.fury.io/rb/playstore_parser)
1
2
  # PlaystoreParser
2
3
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/playstore_parser`. To experiment with that code, run `bin/console` for an interactive prompt.
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
 
@@ -1,3 +1,3 @@
1
1
  module PlaystoreParser
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
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.1
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-05-23 00:00:00.000000000 Z
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.6.3
96
+ rubygems_version: 2.5.1
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Google Play Store API response parser