pomodoro-gui 0.1.2 → 0.1.3
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/README.md +4 -0
- data/lib/pomodoro/gui/version.rb +1 -1
- data/lib/pomodoro/gui/window.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: c50ca941f50d1f5c6cd0e6a0ba7be78996a3ca31
|
|
4
|
+
data.tar.gz: bdfc1a3924f008441c825199f04d8dba1d23a220
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 842319add1430692dd0ab874e2fd6b72c1f4ea0ba205b257b7f26681e9b8cb1dddbe25829cefe9c47e4b9be25ba703c7699f84d7248e4ee8c8436b2d67aadc39
|
|
7
|
+
data.tar.gz: 76b86617df93290599ee804576addddd94ede3a213e0622f5806583931f1034aed3460b65d4d3c0b2a32ecd7397f010f3f2ca2429fd3316a4d7fb7fceb979b60
|
data/README.md
CHANGED
|
@@ -2,8 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/pomodoro-gui)
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
Just a simple Pomodoro with a minimal graphical interface made in Ruby with the help of Gosu made for fun.
|
|
6
8
|
|
|
9
|
+
**IMPORTANT**: Gosu maybe not interpret the graphical coordinates the same way on differents OSs, so the position of the graphical elements may vary. This is just a test made for fun.
|
|
10
|
+
|
|
7
11
|
## About
|
|
8
12
|
|
|
9
13
|
The Pomodoro Technique is a time management method developed by Francesco Cirillo in the late 1980s. The technique uses a timer to break down work into intervals, traditionally 25 minutes in length, separated by short breaks. These intervals are called pomodoros, the plural in English of the Italian word pomodoro, which means tomato. The method is based on the idea that frequent breaks can improve mental agility. (Wikipedia)
|
data/lib/pomodoro/gui/version.rb
CHANGED
data/lib/pomodoro/gui/window.rb
CHANGED
|
@@ -50,7 +50,7 @@ module Pomodoro
|
|
|
50
50
|
@images[:rest].draw(104, 364, 1)
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
@font.draw("
|
|
53
|
+
@font.draw("Pomodoro ##{@cycles.to_s.rjust(2, '0')}", 78, 268, 3, 1, 1, Gosu::Color::BLACK)
|
|
54
54
|
@font_time.draw("#{(@t + @seconds).strftime('%M:%S')}", 92, 292, 3, 1, 1, @timer_colour)
|
|
55
55
|
end
|
|
56
56
|
|