pomodoro-gui 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9976351e761e594b1b0903af811faa3688105832
4
- data.tar.gz: 1cc96ae8d5168a04a55303986f84322da1a05df8
3
+ metadata.gz: c50ca941f50d1f5c6cd0e6a0ba7be78996a3ca31
4
+ data.tar.gz: bdfc1a3924f008441c825199f04d8dba1d23a220
5
5
  SHA512:
6
- metadata.gz: 29fbabfa2f0e275acbdb872af5b23d747c37b734701334114cef67133fb8027d01d22cd0b0c7a705cbffb51d241a42560421c6f0442f2b02d20c12c1e11b353d
7
- data.tar.gz: 539814a5144dcd9fa8156aaac5a675aa1907b3fc72a6c711b3b206bfdcb5a5c6a8ccbc6470d123dd1fcf6c4b12a31f6b944c3c4d4562b712d808a1cf3fd51ae1
6
+ metadata.gz: 842319add1430692dd0ab874e2fd6b72c1f4ea0ba205b257b7f26681e9b8cb1dddbe25829cefe9c47e4b9be25ba703c7699f84d7248e4ee8c8436b2d67aadc39
7
+ data.tar.gz: 76b86617df93290599ee804576addddd94ede3a213e0622f5806583931f1034aed3460b65d4d3c0b2a32ecd7397f010f3f2ca2429fd3316a4d7fb7fceb979b60
data/README.md CHANGED
@@ -2,8 +2,12 @@
2
2
 
3
3
  [![GemVersion](https://badge.fury.io/rb/pomodoro-gui.svg)](http://badge.fury.io/rb/pomodoro-gui)
4
4
 
5
+ ![pomodoro-gui](https://dl.dropboxusercontent.com/u/17948653/Proyectos/pomodoro-gui/pomodoro-gui.png)
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)
@@ -1,5 +1,5 @@
1
1
  module Pomodoro
2
2
  module Gui
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -50,7 +50,7 @@ module Pomodoro
50
50
  @images[:rest].draw(104, 364, 1)
51
51
  end
52
52
 
53
- @font.draw("This is your pomodoro ##{@cycles.to_s.rjust(2, '0')}", 20, 268, 3, 1, 1, Gosu::Color::BLACK)
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pomodoro-gui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Gonzalez