film_snob 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c009c58d2b98f35b7e85895c3e4da9bffb2a3deb
4
- data.tar.gz: e52c4ca5a5e484e1115ece13a4d79feb1a2fdac0
3
+ metadata.gz: 958081a45eebed29888fdad4c10363e475ae7abc
4
+ data.tar.gz: a1179cd37f0c04b27cfb9c68b6edf3e655d8f705
5
5
  SHA512:
6
- metadata.gz: 65741c40b8b2567c17eb71684ae45730db46a8321ea966d290fbf7649abc45c19791c3372024e5c3b5fa24ea68a4d6dd05e487ad9d8ba85a0732ef1999709af6
7
- data.tar.gz: 2524c5efca4066ee12b725ddee326a07d19ceffcc2312399ffe04a09d036d93b0773aa668eba5b1847800c07eac89dee84cadfe7f288195f97dc0456949dfa5c
6
+ metadata.gz: 426af9a15fc5e5fe29fa0419b8777031893ac56442d8adedcc13e7c1210e971db2472986e71f7dabc0319c35db42d9a233f19dda91f1c74faec0e6eaaeb8983d
7
+ data.tar.gz: 7f0a35867bf1975ff5dcafda50e7af6b7f9b1706bd378e2cd6fb2b8a576792ae98c15fa326268a449926ab3acfaee027bfdebf738fc57fcbb4b1977f8d648064
data/lib/film_snob.rb CHANGED
@@ -32,7 +32,7 @@ class FilmSnob
32
32
  private
33
33
 
34
34
  def complain_about_bad_urls!(method)
35
- raise NotSupportURLError.new("Can not call FilmSnob##{method} because #{url} is not a supported URL.") unless watchable?
35
+ raise NotSupportedURLError.new("Can not call FilmSnob##{method} because #{url} is not a supported URL.") unless watchable?
36
36
  end
37
37
 
38
38
  end
@@ -1,3 +1,3 @@
1
1
  class FilmSnob
2
- class NotSupportURLError < StandardError; end
2
+ class NotSupportedURLError < StandardError; end
3
3
  end
@@ -1,3 +1,3 @@
1
1
  class FilmSnob
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -12,7 +12,7 @@ describe FilmSnob do
12
12
  it 'should raise an exception if you push your luck' do
13
13
  snob = FilmSnob.new("http://hardscrabble.net")
14
14
  expect(snob).to_not be_watchable
15
- expect{snob.id}.to raise_error(FilmSnob::NotSupportURLError)
15
+ expect{snob.id}.to raise_error(FilmSnob::NotSupportedURLError)
16
16
  end
17
17
 
18
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: film_snob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Jacobson