best_image 0.0.1 → 0.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.
@@ -43,6 +43,14 @@ module BestImage
43
43
  self.errors << e
44
44
  self.messages << "An error occured trying to access #{@uri}"
45
45
  raise IOError
46
+ rescue NoMethodError => e
47
+ self.errors << e
48
+ self.messages << "A no method error occured trying to access #{@uri}"
49
+ raise IOError
50
+ rescue Exception => e
51
+ self.errors << e
52
+ self.messages << "An error occured trying to access #{@uri}"
53
+ raise IOError
46
54
  end
47
55
 
48
56
  def set_doc
@@ -1,3 +1,3 @@
1
1
  module BestImage
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -8,6 +8,11 @@ module BestImage
8
8
  ImageFinder.should_receive(:new).with(good_url)
9
9
  ImageSelector.new(good_url)
10
10
  end
11
+
12
+ it "should fail gracefully" do
13
+ best = ImageSelector.new("badurl")
14
+ best.best_image.should be_nil
15
+ end
11
16
  end
12
17
  end
13
18
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: best_image
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Scott Johnson