robbie 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: aecafbceac8b157a4f3985b8c59e5739f14c347a
4
+ data.tar.gz: 9f24dec5a1e9050516dd7a2d93ed7b5a0e2c6b76
5
+ SHA512:
6
+ metadata.gz: baf1024a81ff20fc81335de37ed8f44bd2a8e8a39a5aaf26b522a12411d0389e31de4e7d35cec717376fd2ccab0be534427c702b24700f66573381ab6108e2c9
7
+ data.tar.gz: 24ebd6dbb8f0b6750a4b51cafdb7f35f9105b2d325928acd76153c712766792426b5d402140249f26ee25ade0085ce8bac5aa4be01544b4c3f4e0fd599b498fa
data/.gitignore ADDED
@@ -0,0 +1,40 @@
1
+ ############
2
+ # Ruby #
3
+ ############
4
+
5
+ *.gem
6
+ *.rbc
7
+ /.config
8
+ /coverage/
9
+ /InstalledFiles
10
+ /pkg/
11
+ /spec/reports/
12
+ /spec/examples.txt
13
+ /test/tmp/
14
+ /test/version_tmp/
15
+ /tmp/
16
+
17
+ ## Specific to RubyMotion:
18
+ .dat*
19
+ .repl_history
20
+ build/
21
+
22
+ ## Documentation cache and generated files:
23
+ /.yardoc/
24
+ /_yardoc/
25
+ /doc/
26
+ /rdoc/
27
+
28
+ ## Environment normalization:
29
+ /.bundle/
30
+ /vendor/bundle
31
+ /lib/bundler/man/
32
+
33
+ # for a library or gem, you might want to ignore these files since the code is
34
+ # intended to run in multiple environments; otherwise, check them in:
35
+ # Gemfile.lock
36
+ # .ruby-version
37
+ # .ruby-gemset
38
+
39
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
40
+ .rvmrc
data/LICENSE ADDED
@@ -0,0 +1,8 @@
1
+ Copyright (c) 2016 Ben Poile and Josh Trommel
2
+
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # robbie
2
+ Media metadata aggregating CLI
3
+
4
+ <img align="right" height="260" src="http://poile.me/robbie/img/logo.png">
5
+
6
+ ## Resources
7
+
8
+ ### Movies/TV Shows
9
+ - [OMDB gem](https://github.com/jvanbaarsen/omdb)
10
+ - [CanIStreamIt API](https://github.com/KevinBongart/canistreamit)
11
+
12
+ ### Music
13
+ - [SoundCloud API 1](https://developers.soundcloud.com/docs/api/guide)
14
+ - [SoundCloud API 2](https://developers.soundcloud.com/docs/api/sdks)
15
+ - [SoundCloud gem](https://github.com/soundcloud/soundcloud-ruby)
16
+
17
+ ### Books
18
+ - [GoodReads API](http://www.goodreads.com/api)
19
+ - [Goodreads gem](https://github.com/sosedoff/goodreads)
20
+
21
+ ## Ideas/Planning
22
+ ### `robbie`, the main command
23
+ Specify one of the following afterwards (as well as as a title for the media)
24
+ - `movie`
25
+
26
+ ```bash
27
+ robbie movie "Hitchhiker's Guide to the Galaxy"
28
+ ```
29
+
30
+ - `tv`
31
+
32
+ ```bash
33
+ robbie tv "Rick and Morty"
34
+ ```
35
+
36
+ - `music`
37
+
38
+ ```bash
39
+ robbie music "Freedom! '90" # forever
40
+ ```
41
+
42
+ - `book`
43
+
44
+ ```bash
45
+ robbie book "The Restaurant at the End of the Universe"
46
+ ```
47
+
48
+
49
+ All commands return information regarding the query, each with their own unique keys and values. For example, movies or TV shows will provide a Rotten Tomatoes rating.
50
+
51
+ ## Development
52
+
53
+ Clone the repo, built it with `robbie.gemspec`, and install the gem it builds (`robbie-*.gem`). Simple as that.
54
+
55
+ ```bash
56
+ git clone https://github.com/BenP51/robbie
57
+
58
+ cd robbie
59
+
60
+ gem build robbie.gemspec
61
+ gem install robbie-*.gem
62
+ ```
63
+
64
+ ## LICENSE
65
+ This project is licenced under MIT. More information detailed in the [license file](LICENSE).
data/bin/robbie ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
3
+ $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
4
+
5
+ require 'robbie'
6
+ robbie.run(*ARGV.map(&:downcase))
@@ -0,0 +1,95 @@
1
+ require_relative 'request'
2
+ require_relative 'search'
3
+ # Request.movie('movie title')
4
+ # Request.tv('tv show')
5
+ # Request.actor('actor name')
6
+ # Request.book('book name')
7
+
8
+ module Command
9
+ module_function
10
+
11
+ def search(*args)
12
+ @args = args.first
13
+ @command = @args.shift
14
+
15
+ if @command.nil? then help end
16
+
17
+ case @command
18
+ when 'movie' then Search.movie(@args)
19
+ when 'tv' then Search.tv(@args)
20
+ when 'actor' then Search.actor(@args)
21
+ else help end
22
+ end
23
+
24
+ def info(*args)
25
+ @args = args.first
26
+ @command = @args.shift
27
+
28
+ if @command.nil? then help end
29
+
30
+ case @command
31
+ when 'movie' then Request.movie(@args)
32
+ when 'tv' then Request.tv(@args)
33
+ when 'actor' then Request.actor(@args)
34
+ when 'book' then Request.book(@args)
35
+ when 'id' then Request.id(@args)
36
+ else help end
37
+ end
38
+
39
+ def help(*args)
40
+ unless args.empty?
41
+ @args = args.first
42
+ @command = @args.first
43
+ end
44
+
45
+ if @command.nil?
46
+ advice = {
47
+ search: 'searches the query and returns the first 3 results',
48
+ info: 'provides extensive information on the query (ID)',
49
+ version: 'returns the current version',
50
+ help: 'return this help menu'
51
+ }
52
+
53
+ puts "usage: robbie [command] [arguments]"
54
+ advice.map do |key, value|
55
+ puts "#{key}\t\t#{value}"
56
+ end
57
+ exit
58
+ else
59
+
60
+ info = {
61
+ search: {
62
+ command: 'search',
63
+ example: 'robbie search movies "Pulp Fiction"',
64
+ description: 'searches the query and returns the first 3 results'
65
+ },
66
+ info: {
67
+ command: 'info',
68
+ example: 'robbie info tt0110912',
69
+ description: 'provides extensive information on the query (ID)'
70
+ },
71
+ version: {
72
+ command: 'version',
73
+ example: 'robbie version',
74
+ description: 'returns the current version',
75
+ },
76
+ help: {
77
+ command: 'help',
78
+ example: 'robbie help search',
79
+ description: 'return this help menu. if an optional command parameter is provided, a description and exmaple is returned'
80
+ }
81
+ }
82
+
83
+ if info.has_key? @command.to_sym
84
+ symInfo = info[@command.to_sym]
85
+ puts Rainbow("robbie #{symInfo[:command]}\n").white.bg(:black)
86
+ puts "Example: $ #{symInfo[:example]}\n"
87
+ puts "Description: #{symInfo[:description]}"
88
+ else
89
+ puts "No manual entry for #{@command}"
90
+ end
91
+
92
+ end
93
+ end
94
+
95
+ end
@@ -0,0 +1,9 @@
1
+ {
2
+ "goodreads": {
3
+ "public": "oSMwxqaPNr0o1PYs2Jddg",
4
+ "private": "qbOgJbyCF64rAXuMINjIpCCAONULQcIRh7gcDB5uds"
5
+ },
6
+ "myapifilms": {
7
+ "public": "8e26a029-8cf1-4dd7-89bd-889bf5e74cbd"
8
+ }
9
+ }
@@ -0,0 +1,109 @@
1
+ require 'json'
2
+ require 'http'
3
+ require 'uri'
4
+ require 'time'
5
+ require 'goodreads'
6
+ require 'canistreamit'
7
+ require 'bitly'
8
+
9
+ module Request
10
+ module_function
11
+
12
+ def id(id)
13
+ @id = URI.escape(id.shift)
14
+ @res = HTTP.get("http://www.omdbapi.com/?i=#{@id}")
15
+ @json = JSON.parse(@res)
16
+
17
+ puts "Title: \t\t #{@json["Title"]}"
18
+ puts "Plot: \t\t #{@json["Plot"]}"
19
+ puts "Poster: \t #{@json["Poster"]}"
20
+ puts "Poster: \t #{@json["Actors"]}"
21
+ puts "Rating: \t\t #{@json["imdbRating"]}"
22
+ end
23
+
24
+ def movie(title)
25
+ Bitly.use_api_version_3
26
+
27
+ bitly = Bitly.new('benp51', 'R_886e9ca24b25c1e91d66f5c6379568a9')
28
+ client = Canistreamit::Client.new
29
+
30
+ titleClean = title.first
31
+ overwrittenTitle = URI.escape(title.first)
32
+ canistreamit = client.search_and_query(titleClean, ["streaming"])
33
+ omdbData = JSON.parse(HTTP.get('http://www.omdbapi.com/?t='+overwrittenTitle+'&y=&plot=short&r=json').body)
34
+
35
+ puts "Title:\t\t#{omdbData["Title"]}"
36
+ puts "Plot:\t\t#{omdbData["Plot"]}"
37
+ puts "Director:\t#{omdbData["Director"]}"
38
+ puts "Poster:\t\t#{bitly.shorten(omdbData["Poster"]).short_url}"
39
+ puts "Actors:\t\t#{omdbData["Actors"]}"
40
+ puts "Rating:\t\t#{omdbData["imdbRating"]}"
41
+
42
+ if(canistreamit[0]["availability"]["streaming"].empty?)
43
+ puts "Stream: \tNot Available"
44
+ else
45
+ puts "Stream: "
46
+ canistreamit[0]["availability"]["streaming"].each do |service|
47
+ puts "\t#{service[1]['friendlyName']}\t#{bitly.shorten(service[1]["direct_url"]).short_url}"
48
+ end
49
+ end
50
+ end
51
+
52
+ def tv (title)
53
+ Bitly.use_api_version_3
54
+
55
+ bitly = Bitly.new('benp51', 'R_886e9ca24b25c1e91d66f5c6379568a9')
56
+ title = URI.escape(title.first)
57
+ omdbData = JSON.parse(HTTP.get('http://www.omdbapi.com/?t='+title+'&type=series&plot=short&r=json').body)
58
+ puts "Title:\t\t#{omdbData["Title"]}"
59
+ puts "Plot:\t\t#{omdbData["Plot"]}"
60
+ puts "Poster:\t\t#{bitly.shorten(omdbData["Poster"]).short_url}"
61
+ puts "Actors:\t\t#{omdbData["Actors"]}"
62
+ puts "Rating:\t\t#{omdbData["imdbRating"]}"
63
+ end
64
+
65
+ def actor (args)
66
+ name = URI.escape(args.first)
67
+ myApiFilms = JSON.parse(HTTP.get("http://www.myapifilms.com/imdb/idIMDB?name="+name+"&token="+ '8e26a029-8cf1-4dd7-89bd-889bf5e74cbd' +"&format=json&language=en-us&filmography=1&exactFilter=0&limit=1&bornDied=1&starSign=0&uniqueName=0&actorActress=0&actorTrivia=0&actorPhotos=0&actorVideos=0&salary=0&spouses=0&tradeMark=0&personalQuotes=0&starMeter=0").body)
68
+
69
+ dob = Time.parse(myApiFilms["data"]["names"][0]["dateOfBirth"])
70
+ now = Time.now.utc.to_date
71
+ age = now.year - dob.year - ((now.month > dob.month || (now.month == dob.month && now.day >= dob.day)) ? 0 : 1)
72
+
73
+ apiFilmsShort = myApiFilms["data"]["names"][0]
74
+ films = apiFilmsShort["filmographies"][0]["filmography"]
75
+ puts "Name:\t\t#{apiFilmsShort["name"]}"
76
+ puts "Age:\t\t#{age} years"
77
+ print "Filmography:\t"
78
+ 10.times do |i|
79
+ str = films[i]["year"]
80
+ if str =~ /\d/
81
+ if(i == 9)
82
+ print "#{films[i]["title"]} (#{films[i]["year"][1..-1]})."
83
+ else
84
+ print "#{films[i]["title"]} (#{films[i]["year"][1..-1]}), "
85
+ end
86
+ else
87
+ if(i == 9)
88
+ print "#{films[i]["title"]} (TBD)."
89
+ else
90
+ print "#{films[i]["title"]} (TBD), "
91
+ end
92
+ end
93
+ end
94
+ puts "\nBirthday:\t#{apiFilmsShort["dateOfBirth"]}"
95
+ end
96
+
97
+ def book (title) # GR Ruby gem auto formats the query to be readable
98
+ # file = File.read('key.json')
99
+ # keys = JSON.parse(file)
100
+ title = title.first
101
+ client = Goodreads.new(:api_key => 'oSMwxqaPNr0o1PYs2Jddg') # keys["goodreads"]["public"] # i fucking hate code dude i s2g
102
+ book = client.book_by_title(title)
103
+
104
+ puts "Title: #{book.title}"
105
+ puts "Publisher: #{book.publisher}"
106
+ puts "Author: #{book.authors.author[0]['name']}"
107
+ end
108
+
109
+ end
@@ -0,0 +1,35 @@
1
+ require 'json'
2
+ require 'http'
3
+ require 'uri'
4
+ require 'time'
5
+
6
+ module Search
7
+ module_function
8
+
9
+ def movie(title)
10
+ title = URI.escape(title.first)
11
+ url = "http://www.omdbapi.com/?type=movie&r=json&s="+title
12
+ omdbData = JSON.parse(HTTP.get('http://www.omdbapi.com/?type=movie&r=json&s='+title).body)
13
+ puts "- #{omdbData["Search"][0]["Title"]} (#{omdbData["Search"][0]["Year"]}) - #{omdbData["Search"][0]["imdbID"]}"
14
+ puts "- #{omdbData["Search"][1]["Title"]} (#{omdbData["Search"][1]["Year"]}) - #{omdbData["Search"][1]["imdbID"]}"
15
+ puts "- #{omdbData["Search"][2]["Title"]} (#{omdbData["Search"][2]["Year"]}) - #{omdbData["Search"][2]["imdbID"]}"
16
+ end
17
+
18
+ def tv (title)
19
+ title = URI.escape(title.first)
20
+ omdbData = JSON.parse(HTTP.get('http://www.omdbapi.com/?type=series&r=json&s='+title).body)
21
+ puts "- #{omdbData["Search"][0]["Title"]} (#{omdbData["Search"][0]["Year"]}) /#{omdbData["Search"][0]["imdbID"]}"
22
+ puts "- #{omdbData["Search"][1]["Title"]} (#{omdbData["Search"][1]["Year"]}) /#{omdbData["Search"][1]["imdbID"]}"
23
+ puts "- #{omdbData["Search"][2]["Title"]} (#{omdbData["Search"][2]["Year"]}) /#{omdbData["Search"][2]["imdbID"]}"
24
+ end
25
+
26
+ def actor (name)
27
+ name = URI.escape(name.first)
28
+ myApiFilms = JSON.parse(HTTP.get("http://www.myapifilms.com/imdb/idIMDB?name=#{name}&token=8e26a029-8cf1-4dd7-89bd-889bf5e74cbd&format=json&language=en-us&limit=1&bornDied=1").body)
29
+
30
+ dob = Time.parse(myApiFilms["data"]["names"][0]["dateOfBirth"])
31
+ now = Time.now.utc.to_date
32
+ age = now.year - dob.year - ((now.month > dob.month || (now.month == dob.month && now.day >= dob.day)) ? 0 : 1)
33
+ puts "- #{myApiFilms["data"]["names"][0]["name"]} (Age: #{age}) /#{myApiFilms["data"]["names"][0]["idIMDB"]}"
34
+ end
35
+ end
@@ -0,0 +1,4 @@
1
+ module Robbie
2
+ VERSION = '2.0.0'
3
+ E_VERSION = "robbie v#{VERSION}"
4
+ end
data/lib/robbie.rb ADDED
@@ -0,0 +1,30 @@
1
+ # commands: stream, movie, tv, music, book
2
+ require_relative 'robbie/version'
3
+ require_relative 'robbie/command'
4
+ require 'rainbow'
5
+
6
+ module Marvin
7
+ module_function #ily
8
+
9
+ def run(*args)
10
+ if args.empty?
11
+ Command.help
12
+ else
13
+ process args
14
+ end
15
+ end
16
+
17
+ def process(*args)
18
+ @args = args.first
19
+ @first = @args.shift
20
+
21
+ case @first
22
+ when 'search' then Command.search(@args)
23
+ when 'info' then Command.info(@args)
24
+ when 'version', '--version' then puts Marvin::E_VERSION
25
+ when 'help', '--help' then Command.help(@args)
26
+ else puts "marvin: '#{@first}' is not a marvin command. See 'marvin --help'."
27
+ end
28
+ end
29
+
30
+ end
data/robbie.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/robbie/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ['Ben Poile', 'Josh Trommel']
6
+ gem.email = ['benp51@outlook.com', 'joshtrommel@gmail.com']
7
+ gem.description = 'Media Information at your Fingertips'
8
+ gem.summary = 'TV, Movie, Music, and Book Information ready when are you are'
9
+ gem.homepage = 'https://github.com/BenP51/robbie'
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = ['robbie']
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = 'robbie'
15
+ gem.require_paths = ['lib']
16
+ gem.version = Robbie::VERSION
17
+ gem.licenses = ['MIT']
18
+
19
+ gem.add_development_dependency "bundler", "~> 1.6"
20
+ gem.add_development_dependency "rake", '~> 0'
21
+
22
+ gem.add_dependency 'rainbow', '~> 2.0'
23
+ gem.add_dependency 'canistreamit', '~> 0.0.2'
24
+ gem.add_dependency 'http', '~> 1.0', '>= 1.0.2'
25
+ gem.add_dependency 'goodreads', '~> 0.4.3'
26
+ gem.add_dependency 'bitly', '~> 0.10.4'
27
+ end
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: robbie
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Ben Poile
8
+ - Josh Trommel
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2016-02-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.6'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.6'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rainbow
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '2.0'
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '2.0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: canistreamit
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: 0.0.2
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 0.0.2
70
+ - !ruby/object:Gem::Dependency
71
+ name: http
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '1.0'
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: 1.0.2
80
+ type: :runtime
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '1.0'
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: 1.0.2
90
+ - !ruby/object:Gem::Dependency
91
+ name: goodreads
92
+ requirement: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.4.3
97
+ type: :runtime
98
+ prerelease: false
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 0.4.3
104
+ - !ruby/object:Gem::Dependency
105
+ name: bitly
106
+ requirement: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 0.10.4
111
+ type: :runtime
112
+ prerelease: false
113
+ version_requirements: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 0.10.4
118
+ description: Media Information at your Fingertips
119
+ email:
120
+ - benp51@outlook.com
121
+ - joshtrommel@gmail.com
122
+ executables:
123
+ - robbie
124
+ extensions: []
125
+ extra_rdoc_files: []
126
+ files:
127
+ - ".gitignore"
128
+ - LICENSE
129
+ - README.md
130
+ - bin/robbie
131
+ - lib/robbie.rb
132
+ - lib/robbie/command.rb
133
+ - lib/robbie/keys.json
134
+ - lib/robbie/request.rb
135
+ - lib/robbie/search.rb
136
+ - lib/robbie/version.rb
137
+ - robbie.gemspec
138
+ homepage: https://github.com/BenP51/robbie
139
+ licenses:
140
+ - MIT
141
+ metadata: {}
142
+ post_install_message:
143
+ rdoc_options: []
144
+ require_paths:
145
+ - lib
146
+ required_ruby_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ requirements: []
157
+ rubyforge_project:
158
+ rubygems_version: 2.5.2
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: TV, Movie, Music, and Book Information ready when are you are
162
+ test_files: []