slack_pomodoro_timer 0.2.0 → 0.2.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/lib/slack_pomodoro_timer/cli.rb +9 -1
- data/lib/slack_pomodoro_timer/version.rb +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: f6248b1a2718f54e45f117a92e74b2778c4e9bb1
|
|
4
|
+
data.tar.gz: 5fed4faa070b589f10bb94d3cfbfdc597e58d4ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16d5c335b855f90b4c92913acc1f7c41af31f19d2e3bd40d277460830b8b099cb08773d2bd5a97f7a60c2ed3de765d039d4627beaf41c2e15b4f5b093c8b8f92
|
|
7
|
+
data.tar.gz: e0505cdb12b1f97dcbf38da1fd8a464b72b07b609e9c811937f4913b31918a8c58c767a694add2dc3cf16d4d17cb2ea4d994b90c5487565e211120e0bc911c5b
|
|
@@ -110,7 +110,7 @@ module SlackPomodoroTimer
|
|
|
110
110
|
To test the timer out try passing it a short time limit like 0.1
|
|
111
111
|
|
|
112
112
|
$ slack_pomodoro_timer start --minutes 0.1
|
|
113
|
-
|
|
113
|
+
|
|
114
114
|
;
|
|
115
115
|
|
|
116
116
|
|
|
@@ -130,6 +130,14 @@ module SlackPomodoroTimer
|
|
|
130
130
|
end
|
|
131
131
|
|
|
132
132
|
|
|
133
|
+
desc 'version', 'get the currently installed version of Slack Pomodoro Timer'
|
|
134
|
+
|
|
135
|
+
# Output the current version
|
|
136
|
+
def version
|
|
137
|
+
puts SlackPomodoroTimer::VERSION
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
|
|
133
141
|
end
|
|
134
142
|
end
|
|
135
143
|
|