imdb_title 0.0.5 → 0.0.6

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
  SHA256:
3
- metadata.gz: fb9fbaa9c06d1a5741847ff1b0f159204f76bad9d2c25245825ad79453128c24
4
- data.tar.gz: 215a2ca3813ad5d0bd228bb884142874406483232fd5b18a71b93c14e484587d
3
+ metadata.gz: 5a9c7c27873a19141b2029f5397bb94e2bbeb82b3cc7d22a0a81a99348d6b779
4
+ data.tar.gz: 616e2da419ac2ea8743c55c3e60e75acc2bdfb23299eeb332b92d4a0674bbe93
5
5
  SHA512:
6
- metadata.gz: 037e83d2287c6a4cda68ac5b36c770140f74c645aed4456654ac38395ae0bb82fbd1cf241f187937385fd8d64ada4ab5f1e95aa2b49c5fcca50fa31f8476e023
7
- data.tar.gz: 42f50fb088977b0d294caf62f562b2ea421c851342b341a31fd88db2762723ccca0deade8758617ab82ad685d23ba56136b6758e20dc27dbc6984d7d9dfe60d6
6
+ metadata.gz: 4ff38f8154219fb5c1a21117accf5aafa51095ff9a1d9cda288cff10a6692546877134a80b34da8f1df11ab82cbe173c964ec7f364a69b62ed0685365209c99b
7
+ data.tar.gz: 60dcfe34ee2b1fc66f576b8caf5cf04f99dce43b7ef68ce385c2ea0a6ed505be30ccf57a281fca8b97800bccfd41fa457ebaace6760337b0f17537443f9d7868
data/lib/imdb_title.rb CHANGED
@@ -3,8 +3,9 @@
3
3
  require "require_all"
4
4
  require "nokogiri"
5
5
  require "httparty"
6
+ require_relative "exceptions"
6
7
  mydir = __dir__
7
- Dir.glob(File.join(mydir, "imdb_title", "*.rb")).sort.each { |file| require file }
8
+ Dir.glob(File.join(mydir, "titles", "*.rb")).sort.each { |file| require file }
8
9
 
9
10
  ##
10
11
  ##
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imdb_title
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juzer Shakir
@@ -107,12 +107,12 @@ executables: []
107
107
  extensions: []
108
108
  extra_rdoc_files: []
109
109
  files:
110
+ - lib/exceptions.rb
110
111
  - lib/imdb_title.rb
111
- - lib/imdb_title/exceptions.rb
112
- - lib/imdb_title/titles/episode.rb
113
- - lib/imdb_title/titles/movie.rb
114
- - lib/imdb_title/titles/tv_show.rb
115
- - lib/imdb_title/titles/video_game.rb
112
+ - lib/titles/episode.rb
113
+ - lib/titles/movie.rb
114
+ - lib/titles/tv_show.rb
115
+ - lib/titles/video_game.rb
116
116
  homepage: https://github.com/JuzerShakir/imdb
117
117
  licenses:
118
118
  - MIT
File without changes
File without changes
File without changes
File without changes
File without changes