termodoro 0.3.9 → 0.3.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -2
- data/lib/termodoro/termodoro.rb +1 -1
- data/lib/termodoro/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: 3db9c6c962a0dc82df4abca7c64002f80c296744
|
4
|
+
data.tar.gz: 1da22fe2151c4784ee994868a6cb486bd76ede4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24d2ec284e3ee888b08a785af8defa5f6ee3a41d6c9f7d7d4f32c8eeec36e5864f116b85bd17ceedaca9634e329e370d39b3894e16095ab61f43762cce01a502
|
7
|
+
data.tar.gz: ce46e1c306fa3254b788c815a56be97b2a586a8c8e86afc33c4dc4d5433da4b780e6450ef1aef980f875a7562df94270193d6efd44e520f6f434d25bc5070f52
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
+
### 0.3.10 (10/30/2013)
|
2
|
+
|
3
|
+
- Fix typo that was actually breaking code. - [@vcavallo](http://github.com/vcavallo)
|
4
|
+
|
1
5
|
### 0.3.9 (10/30/2013)
|
2
6
|
|
3
|
-
- Implement VERSION constant and update Gemspec to use that. Added test for the same. Other minor updates to Gemspec file.
|
7
|
+
- Implement VERSION constant and update Gemspec to use that. Added test for the same. Other minor updates to Gemspec file. - [@vcavallo](http://github.com/vcavallo)
|
4
8
|
|
5
9
|
### 0.3.5 (10/30/2013)
|
6
10
|
|
@@ -24,4 +28,4 @@
|
|
24
28
|
|
25
29
|
### 0.1.9 (10/24/2013)
|
26
30
|
|
27
|
-
- First working public release. - [@vcavallo](http://github.com/vcavallo)
|
31
|
+
- First working public release. - [@vcavallo](http://github.com/vcavallo)
|
data/lib/termodoro/termodoro.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require_relative 'version'
|
1
|
+
require_relative './version'
|
2
2
|
# A new instance of this class takes user-input as command line arguments and
|
3
3
|
# prepares a string to be execute as a Bash system command. The user specifies an
|
4
4
|
# amount of time and an optional message to display. After the amount of time elapses
|
data/lib/termodoro/version.rb
CHANGED