google_play_search 0.0.7 → 0.0.8
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 +7 -0
- data/lib/google_play_search/app_parser.rb +1 -1
- metadata +9 -13
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 2541cd170b10392c31959ef5727c83105d72e2f8
|
|
4
|
+
data.tar.gz: 6ab50b0648f567d5b9b760bfeda5b2d059e740f3
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 3aa43852fc581ba72f7b6dfac4b6e1de9b8cb04e9eefa7f91009a9ff1649c7c75ee80eac4ecbab49a4ce962eae698f8a71884fbfd04ea77e59587946167100cb
|
|
7
|
+
data.tar.gz: 9340285abd7f8ea2e21b856f6a72f3eb718d6a21eee834dddf9f3ba932d221527c64e29657f82ad7d0b1d3634dea857b6130543c844fe0894ff6fbe4ec35b4b4
|
|
@@ -86,7 +86,7 @@ module GooglePlaySearch
|
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
def get_app_price(app_content)
|
|
89
|
-
prices = app_content.css("div.details span.price span")
|
|
89
|
+
prices = app_content.css("div.details span.price-container button.price span")
|
|
90
90
|
if prices
|
|
91
91
|
if match = prices.first.content.match(/(.[0-9]*\.[0-9]+|[0-9]+)/)
|
|
92
92
|
return match[1]
|
metadata
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_play_search
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.8
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Grant Chen
|
|
@@ -14,17 +13,15 @@ dependencies:
|
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: nokogiri
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - ">="
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: 1.5.3
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
24
|
+
- - ">="
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: 1.5.3
|
|
30
27
|
description: google play market search gem
|
|
@@ -34,32 +31,31 @@ extensions: []
|
|
|
34
31
|
extra_rdoc_files: []
|
|
35
32
|
files:
|
|
36
33
|
- lib/google_play_search.rb
|
|
34
|
+
- lib/google_play_search/search.rb
|
|
37
35
|
- lib/google_play_search/app.rb
|
|
38
36
|
- lib/google_play_search/app_parser.rb
|
|
39
|
-
- lib/google_play_search/search.rb
|
|
40
37
|
homepage: https://github.com/grantchen/google_play_search
|
|
41
38
|
licenses: []
|
|
39
|
+
metadata: {}
|
|
42
40
|
post_install_message:
|
|
43
41
|
rdoc_options: []
|
|
44
42
|
require_paths:
|
|
45
43
|
- lib
|
|
46
44
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
47
|
-
none: false
|
|
48
45
|
requirements:
|
|
49
|
-
- -
|
|
46
|
+
- - ">="
|
|
50
47
|
- !ruby/object:Gem::Version
|
|
51
48
|
version: '0'
|
|
52
49
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
-
none: false
|
|
54
50
|
requirements:
|
|
55
|
-
- -
|
|
51
|
+
- - ">="
|
|
56
52
|
- !ruby/object:Gem::Version
|
|
57
53
|
version: '0'
|
|
58
54
|
requirements: []
|
|
59
55
|
rubyforge_project:
|
|
60
|
-
rubygems_version:
|
|
56
|
+
rubygems_version: 2.0.3
|
|
61
57
|
signing_key:
|
|
62
|
-
specification_version:
|
|
58
|
+
specification_version: 4
|
|
63
59
|
summary: google play market search
|
|
64
60
|
test_files: []
|
|
65
61
|
has_rdoc:
|