motivator 1.0.0 → 1.0.1
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/bin/motivator +2 -1
- metadata +15 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec6a5287f4e2a58da7dc36626143c4f9b196a0b1
|
|
4
|
+
data.tar.gz: 9fc170184a2e3f69fc76f9c4c451cb5d8226b4a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0104676e3a983a8d7910b496d59b5ae6e1d26f33ba6ea481e1ff21c83c596917ccd90cf192ec3968d2c07421a92e8198f0671c2fc565a1732f4dbc46c29111e1
|
|
7
|
+
data.tar.gz: f84bbb47cb26e93e7f466ba03e202368ba0da117c42da80f9d564039ed940ff6171e66d9364f6014b248ff09da7bcfdb2cf8bb033375352ae319005a6f3c4c73
|
data/bin/motivator
CHANGED
|
@@ -8,7 +8,8 @@ require 'command_parser'
|
|
|
8
8
|
require 'file_watcher'
|
|
9
9
|
|
|
10
10
|
# load the quotes from the yaml file
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
quotes = YAML.load_file(File.dirname(__FILE__)+'/../lib/quote.yml')
|
|
12
13
|
# initialise the motivation class
|
|
13
14
|
motivator = Motivator.new(quotes['quotes'], ColourOutput.new, FileWatcher.new)
|
|
14
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: motivator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hugo Rut
|
|
@@ -14,6 +14,9 @@ dependencies:
|
|
|
14
14
|
name: mocha
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 1.1.0
|
|
17
20
|
- - '>='
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
22
|
version: 1.1.0
|
|
@@ -21,6 +24,9 @@ dependencies:
|
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
27
|
+
- - ~>
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 1.1.0
|
|
24
30
|
- - '>='
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
32
|
version: 1.1.0
|
|
@@ -28,6 +34,9 @@ dependencies:
|
|
|
28
34
|
name: minitest
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
30
36
|
requirements:
|
|
37
|
+
- - ~>
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 5.8.3
|
|
31
40
|
- - '>='
|
|
32
41
|
- !ruby/object:Gem::Version
|
|
33
42
|
version: 5.8.3
|
|
@@ -35,6 +44,9 @@ dependencies:
|
|
|
35
44
|
prerelease: false
|
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
46
|
requirements:
|
|
47
|
+
- - ~>
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: 5.8.3
|
|
38
50
|
- - '>='
|
|
39
51
|
- !ruby/object:Gem::Version
|
|
40
52
|
version: 5.8.3
|
|
@@ -51,7 +63,7 @@ files:
|
|
|
51
63
|
- ./lib/motivator.rb
|
|
52
64
|
- ./lib/quote.yml
|
|
53
65
|
- bin/motivator
|
|
54
|
-
homepage:
|
|
66
|
+
homepage: https://rubygems.org/gems/motivator
|
|
55
67
|
licenses:
|
|
56
68
|
- MIT
|
|
57
69
|
metadata: {}
|
|
@@ -71,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
71
83
|
version: '0'
|
|
72
84
|
requirements: []
|
|
73
85
|
rubyforge_project:
|
|
74
|
-
rubygems_version: 2.
|
|
86
|
+
rubygems_version: 2.5.1
|
|
75
87
|
signing_key:
|
|
76
88
|
specification_version: 4
|
|
77
89
|
summary: Command line motivator
|