termodoro 0.3.10 → 0.3.11
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/CHANGELOG.md +4 -0
- data/lib/termodoro/termodoro.rb +1 -1
- data/lib/termodoro/version.rb +2 -2
- data/termodoro.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7244c90d83fbbad7fabc205e4ab797f194433a78
|
|
4
|
+
data.tar.gz: 5f7d9b93040b3621f9caac7f8fdbe8f280ad9b91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88a6e8fe89a169b2b3b75af14816922d12a8a5c566435bb3a2e7a9ba9b399dc282fde78d469c4ed72c36217f90e77d4fd65af7bcc5ee8ca026025a8cf819f07e
|
|
7
|
+
data.tar.gz: 82adebbfbc43852be2be20414ae2ab892cdf8c09127c27bc1daabc8406b4669f33faf2e694373da4f6f1ed30bc1ac81638c6ffb3a57fd05eaf11a99f9185b92e
|
data/CHANGELOG.md
CHANGED
data/lib/termodoro/termodoro.rb
CHANGED
|
@@ -5,7 +5,7 @@ require_relative './version'
|
|
|
5
5
|
# a terminal-notifier message appears with the message - if the message was omitted,
|
|
6
6
|
# the word "Termodoro" appears instead.
|
|
7
7
|
class Termodoro
|
|
8
|
-
include
|
|
8
|
+
include VersionModule
|
|
9
9
|
attr_accessor :time_unit, :number_of_units, :message
|
|
10
10
|
attr_reader :arguments
|
|
11
11
|
# @!attribute time_unit
|
data/lib/termodoro/version.rb
CHANGED
data/termodoro.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ require './lib/termodoro/termodoro'
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'termodoro'
|
|
7
|
-
s.version = Termodoro::
|
|
7
|
+
s.version = Termodoro::VERSION
|
|
8
8
|
s.date = Time.now.utc.strftime("%Y-%m-%d")
|
|
9
9
|
s.summary = "A lightweight CL reminder app"
|
|
10
10
|
s.description = "Use this little utility to set simple reminders from the command line. See the github page below for more information"
|