ratr 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/Gemfile +3 -0
- data/Gemfile.lock +27 -0
- data/README.md +50 -0
- data/bin/ratr +113 -0
- data/examples/movies.csv +1116 -0
- data/examples/movies_small.csv +25 -0
- data/lib/ratr/version.rb +3 -0
- data/ratr-0.1.1.gem +0 -0
- data/ratr.gemspec +21 -0
- metadata +28 -4
@@ -0,0 +1,25 @@
|
|
1
|
+
7 Faces of Dr. Lao,1964
|
2
|
+
7th Heaven,1927
|
3
|
+
8 Mile,2002
|
4
|
+
12 Years a Slave,2013
|
5
|
+
20 Feet from Stardom,2013
|
6
|
+
2001: A Space Odyssey,1968
|
7
|
+
20000 Leagues Under the Sea,1954
|
8
|
+
The Abyss,1989
|
9
|
+
The Accidental Tourist,1988
|
10
|
+
The Accountant,2001
|
11
|
+
The Accused,1988
|
12
|
+
Adaptation,2002
|
13
|
+
Adventures of Don Juan,1948
|
14
|
+
"The Adventures of Priscilla, Queen of the Desert",1994
|
15
|
+
The Adventures of Robin Hood,1938
|
16
|
+
Affliction,1997
|
17
|
+
The African Queen,1951
|
18
|
+
The Age of Innocence,1993
|
19
|
+
Air Force,1943
|
20
|
+
Airport,1970
|
21
|
+
Aladdin,1992
|
22
|
+
The Alamo,1960
|
23
|
+
The Alaskan Eskimo,1953
|
24
|
+
Albert Schweitzer,1957
|
25
|
+
Alexander's Ragtime Band,1938
|
data/lib/ratr/version.rb
ADDED
data/ratr-0.1.1.gem
ADDED
Binary file
|
data/ratr.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/ratr/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Patrick Robertson"]
|
6
|
+
gem.email = ["patricksrobertson@gmail.com"]
|
7
|
+
gem.description = %q{Rotten Tomatoes + imdb rating mashup assignment}
|
8
|
+
gem.summary = %q{coding assignment for a rotten tomatoes + imdb rating mashup}
|
9
|
+
gem.homepage = "https://github.com/patricksrobertson/ratr"
|
10
|
+
gem.license = "MIT"
|
11
|
+
|
12
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
13
|
+
gem.files = `git ls-files`.split("\n")
|
14
|
+
gem.name = "ratr"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Ratr::VERSION
|
17
|
+
|
18
|
+
gem.add_dependency 'faraday', '~> 0.9'
|
19
|
+
gem.add_dependency 'faraday_middleware', '~> 0.9'
|
20
|
+
gem.add_dependency 'typhoeus', '~> 0.7'
|
21
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ratr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Robertson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -38,13 +38,37 @@ dependencies:
|
|
38
38
|
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0.9'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: typhoeus
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.7'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.7'
|
41
55
|
description: Rotten Tomatoes + imdb rating mashup assignment
|
42
56
|
email:
|
43
57
|
- patricksrobertson@gmail.com
|
44
|
-
executables:
|
58
|
+
executables:
|
59
|
+
- ratr
|
45
60
|
extensions: []
|
46
61
|
extra_rdoc_files: []
|
47
|
-
files:
|
62
|
+
files:
|
63
|
+
- Gemfile
|
64
|
+
- Gemfile.lock
|
65
|
+
- README.md
|
66
|
+
- bin/ratr
|
67
|
+
- examples/movies.csv
|
68
|
+
- examples/movies_small.csv
|
69
|
+
- lib/ratr/version.rb
|
70
|
+
- ratr-0.1.1.gem
|
71
|
+
- ratr.gemspec
|
48
72
|
homepage: https://github.com/patricksrobertson/ratr
|
49
73
|
licenses:
|
50
74
|
- MIT
|