top_box 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +20 -0
- data/README.md +20 -8
- data/bin/top_box +1 -1
- data/lib/{top_box_env.rb → top_box.rb} +1 -1
- data/top_box-0.1.0.gem +0 -0
- data/top_box.gemspec +3 -3
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffe7b22a35baf704f15636736b9bb022f7b0a9b9abc983d4e6cf4fe27e17a3ef
|
4
|
+
data.tar.gz: dcfc3a6f374c8aa5bed304b0ca5947caae72b6561f2fd681d5e49223d27a9993
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a74cdef290d6f42081926ebba3642be21294f43a8fd0c1bddf7229e481ba7faf25d3fbcb02afd27e25051ce434d8498582a562a42d9559a90827c96d8e13c5ca
|
7
|
+
data.tar.gz: 1b2f58b38d323636ed51be96279d986399e707f4d86872409ed14a8238a79fa3fa96ff190f967f861b699f250ffc92afa63034b8a211b9785d2136ab30142b34
|
data/Gemfile.lock
ADDED
data/README.md
CHANGED
@@ -1,21 +1,33 @@
|
|
1
1
|
# TopBox
|
2
2
|
|
3
|
-
This is a Ruby CLI application that allows the user to view summaries and critic reviews of current top box office films. Data provided by imdb.com.
|
3
|
+
This is a Ruby CLI command-line interface application that allows the user to view summaries and critic reviews of current top box office films. Data provided by imdb.com.
|
4
4
|
|
5
|
+
## Requirements
|
5
6
|
|
6
|
-
|
7
|
-
|
8
|
-
This app was built on ruby 2.3.3
|
7
|
+
This app was built on ruby 2.3.3.
|
9
8
|
|
10
9
|
## Usage
|
11
10
|
|
12
|
-
|
11
|
+
For gem installation: ($ signals a terminal command)
|
13
12
|
|
14
|
-
|
13
|
+
This will install the gem in your environment, then use irb (the interactive ruby shell) to activate a new instance of the CLI application.
|
14
|
+
```
|
15
|
+
$gem install 'top_box'
|
16
|
+
$irb
|
17
|
+
$require 'top_box'
|
18
|
+
$TopBox::CLI.new.call
|
19
|
+
```
|
15
20
|
|
16
|
-
|
21
|
+
For locally cloned repositories, initialize application with command below, then follow on screen prompts.
|
22
|
+
|
23
|
+
$ bin/top_box
|
24
|
+
|
25
|
+
## Author
|
17
26
|
|
18
|
-
|
27
|
+
* **Jenny Kam**
|
28
|
+
[jk-me](https://github.com/jk-me)
|
29
|
+
* **Blog:** [TopBox App](https://jk-me.github.io/top_box_cli)
|
30
|
+
* **Blog:** [Publishing a Ruby Gem](https://jk-me.github.io/ruby_cli_gem_-_live_version)
|
19
31
|
|
20
32
|
## Contributing
|
21
33
|
|
data/bin/top_box
CHANGED
data/top_box-0.1.0.gem
ADDED
Binary file
|
data/top_box.gemspec
CHANGED
@@ -5,12 +5,12 @@ require "top_box/version"
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "top_box"
|
8
|
-
spec.version = '0.1.
|
8
|
+
spec.version = '0.1.2'
|
9
9
|
spec.authors = ["'Jenny Kam'"]
|
10
10
|
spec.email = ["'jkam17@gmail.com'"]
|
11
11
|
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.description = %q{
|
12
|
+
spec.summary = %q{CLI application to show top grossing movies currently in theaters. }
|
13
|
+
spec.description = %q{A command-line application that provides top box office movie summaries, and critic reviews from imdb.com}
|
14
14
|
spec.homepage = "https://github.com/jk-me/top_box_cli"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: top_box
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "'Jenny Kam'"
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,7 +38,8 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
description:
|
41
|
+
description: A command-line application that provides top box office movie summaries,
|
42
|
+
and critic reviews from imdb.com
|
42
43
|
email:
|
43
44
|
- "'jkam17@gmail.com'"
|
44
45
|
executables: []
|
@@ -48,18 +49,20 @@ files:
|
|
48
49
|
- ".gitignore"
|
49
50
|
- CODE_OF_CONDUCT.md
|
50
51
|
- Gemfile
|
52
|
+
- Gemfile.lock
|
51
53
|
- LICENSE.txt
|
52
54
|
- README.md
|
53
55
|
- Rakefile
|
54
56
|
- bin/console
|
55
57
|
- bin/setup
|
56
58
|
- bin/top_box
|
59
|
+
- lib/top_box.rb
|
57
60
|
- lib/top_box/cli.rb
|
58
61
|
- lib/top_box/movie.rb
|
59
62
|
- lib/top_box/review.rb
|
60
63
|
- lib/top_box/scraper.rb
|
61
64
|
- lib/top_box/version.rb
|
62
|
-
-
|
65
|
+
- top_box-0.1.0.gem
|
63
66
|
- top_box.gemspec
|
64
67
|
homepage: https://github.com/jk-me/top_box_cli
|
65
68
|
licenses:
|
@@ -84,5 +87,5 @@ rubyforge_project:
|
|
84
87
|
rubygems_version: 2.7.8
|
85
88
|
signing_key:
|
86
89
|
specification_version: 4
|
87
|
-
summary:
|
90
|
+
summary: CLI application to show top grossing movies currently in theaters.
|
88
91
|
test_files: []
|