assumption 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/assumption-0.1.0.gem +0 -0
- data/assumption.gemspec +4 -5
- data/lib/assumption/version.rb +1 -1
- metadata +9 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e3056e37ec7f2b7bbcbc52e308895371f50c625cfcd0f9249047de171eba592
|
4
|
+
data.tar.gz: '08c5ace75ca0b36181167df4c7574b265caecb576714ed3b84cf29004410395e'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '06778e3b5915a2c2b560a6765f24b79fd4129898919d282f04833348cef3d4ea03c283f37723abf97cee3910429eace2cf75dd956a4af26e620e28ba45c47efe'
|
7
|
+
data.tar.gz: 6d1f0162e9776a65f5a48926c98b4d5a019d335e9868ca5e1e0a0bf8bc1b3c103766aaef2d87060a3bef6fc0372eae4af2abd79b5a06aaac8451b64e9b87a941
|
data/README.md
CHANGED
@@ -21,7 +21,7 @@ Or install it yourself as:
|
|
21
21
|
|
22
22
|
## Usage
|
23
23
|
|
24
|
-
You will be promted to enter a year between 1952 - 2019.
|
24
|
+
You will be promted to enter a year between 1952 - 2019, you can also enter 'random' to select a random year.
|
25
25
|
Press enter and you will be shown 2 songs from the top 100 chart music from that year.
|
26
26
|
|
27
27
|
You can enter 'h' to say that the second song is higher up in the chart than the first presented song,
|
Binary file
|
data/assumption.gemspec
CHANGED
@@ -15,9 +15,9 @@ Gem::Specification.new do |spec|
|
|
15
15
|
|
16
16
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
17
17
|
|
18
|
-
spec.metadata["homepage_uri"] = "https://github.com/DBuckley0126/CLI
|
19
|
-
spec.metadata["source_code_uri"] = "https://github.com/DBuckley0126/CLI
|
20
|
-
spec.metadata["changelog_uri"] = "https://github.com/DBuckley0126/CLI
|
18
|
+
spec.metadata["homepage_uri"] = "https://github.com/DBuckley0126/Assumption-CLI"
|
19
|
+
spec.metadata["source_code_uri"] = "https://github.com/DBuckley0126/Assumption-CLI"
|
20
|
+
spec.metadata["changelog_uri"] = "https://github.com/DBuckley0126/Assumption-CLI"
|
21
21
|
|
22
22
|
# Specify which files should be added to the gem when it is released.
|
23
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
@@ -32,7 +32,6 @@ Gem::Specification.new do |spec|
|
|
32
32
|
spec.add_dependency 'bundler', '~> 2.0'
|
33
33
|
spec.add_dependency 'rake', '~> 10.0'
|
34
34
|
spec.add_dependency 'minitest', '~> 5.0'
|
35
|
-
spec.add_dependency '
|
36
|
-
spec.add_dependency 'nokogiri', '>= 0'
|
35
|
+
spec.add_dependency 'nokogiri', '~> 1.10'
|
37
36
|
spec.add_dependency 'tco', '~> 0.1.8'
|
38
37
|
end
|
data/lib/assumption/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: assumption
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DBuckley0126
|
@@ -52,34 +52,20 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '5.0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: pry
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :runtime
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
56
|
name: nokogiri
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
|
-
- - "
|
59
|
+
- - "~>"
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
61
|
+
version: '1.10'
|
76
62
|
type: :runtime
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
|
-
- - "
|
66
|
+
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
68
|
+
version: '1.10'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: tco
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -111,6 +97,7 @@ files:
|
|
111
97
|
- LICENSE.txt
|
112
98
|
- README.md
|
113
99
|
- Rakefile
|
100
|
+
- assumption-0.1.0.gem
|
114
101
|
- assumption.gemspec
|
115
102
|
- bin/assumption
|
116
103
|
- bin/console
|
@@ -129,9 +116,9 @@ licenses:
|
|
129
116
|
- MIT
|
130
117
|
metadata:
|
131
118
|
allowed_push_host: https://rubygems.org
|
132
|
-
homepage_uri: https://github.com/DBuckley0126/CLI
|
133
|
-
source_code_uri: https://github.com/DBuckley0126/CLI
|
134
|
-
changelog_uri: https://github.com/DBuckley0126/CLI
|
119
|
+
homepage_uri: https://github.com/DBuckley0126/Assumption-CLI
|
120
|
+
source_code_uri: https://github.com/DBuckley0126/Assumption-CLI
|
121
|
+
changelog_uri: https://github.com/DBuckley0126/Assumption-CLI
|
135
122
|
post_install_message:
|
136
123
|
rdoc_options: []
|
137
124
|
require_paths:
|