ioffer 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -11,4 +11,5 @@ group :development do
11
11
  gem 'ore-tasks', '~> 0.4'
12
12
  gem 'rspec', '~> 2.4'
13
13
  gem 'yard', '~> 0.6.0'
14
+ gem 'bluecloth', '~> 2.1.0'
14
15
  end
data/README.md CHANGED
@@ -18,27 +18,27 @@ Features
18
18
  Examples
19
19
  --------
20
20
 
21
- require 'ioffer'
22
- require 'open-uri'
23
-
24
- search = IOfferSearch.parse open("http://www.ioffer.com/si/saxphones")
25
-
26
- search.results.each do |result|
27
- puts result.title
28
- puts result.url
29
- end
30
-
31
- result_url = search.results.first.url
32
-
33
- page = IOfferPage.parse open(result_url)
34
- puts page.seller_name
35
- puts page.item_id
36
- puts page.price
21
+ require 'ioffer'
22
+ require 'open-uri'
23
+
24
+ search = IOfferSearch.parse open("http://www.ioffer.com/si/saxphones")
25
+
26
+ search.results.each do |result|
27
+ puts result.title
28
+ puts result.url
29
+ end
30
+
31
+ result_url = search.results.first.url
32
+
33
+ page = IOfferPage.parse open(result_url)
34
+ puts page.seller_name
35
+ puts page.item_id
36
+ puts page.price
37
37
 
38
38
  Install
39
39
  -------
40
40
 
41
- $ gem install ioffer
41
+ $ gem install ioffer
42
42
 
43
43
  Todo
44
44
  ----
@@ -28,5 +28,6 @@ def parse_description(element)
28
28
  end
29
29
 
30
30
  def page_active?(html)
31
- !!/You are being/.match(html).nil?
31
+ doc = Nokogiri::HTML(html)
32
+ !!/You are being/.match(html).nil? && !!doc.at("//div[@id='solr-search-results']").count == 0
32
33
  end
@@ -1,4 +1,4 @@
1
1
  module Ioffer
2
2
  # ioffer version
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ioffer
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.4
5
+ version: 0.1.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Ezekiel Templin
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-04 00:00:00 Z
13
+ date: 2011-05-07 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: nibbler