domodoro 0.0.1 → 0.0.2
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.
- data/.travis.yml +8 -0
- data/Rakefile +5 -1
- data/Readme.md +4 -3
- data/lib/domodoro/version.rb +1 -1
- data/test/support/em-minitest.rb +4 -0
- data/test/test_helper.rb +1 -3
- metadata +4 -3
data/.travis.yml
ADDED
data/Rakefile
CHANGED
data/Readme.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# domodoro
|
|
1
|
+
# domodoro [](https://secure.travis-ci.org/txus/domodoro.png])
|
|
2
2
|
|
|
3
3
|
Distributed pomodoro architecture running on EventMachine.
|
|
4
4
|
|
|
@@ -27,6 +27,9 @@ Solution: a pub/sub architecture where a centralized publisher (the domodoro
|
|
|
27
27
|
server) broadcasts pomodoro events to whoever wants to subscribe to them, so
|
|
28
28
|
whoever wants to stay synced, can, and who doesn't, can stay out of it.
|
|
29
29
|
|
|
30
|
+
This gem is tested with MRI versions 1.8.7 and 1.9.2, Rubinius versions 1.2.4
|
|
31
|
+
and 2.0.0pre, and ruby-head.
|
|
32
|
+
|
|
30
33
|
## Install
|
|
31
34
|
|
|
32
35
|
$ gem install domodoro
|
|
@@ -66,5 +69,3 @@ If you want to configure this, create a file in your home directory named
|
|
|
66
69
|
|
|
67
70
|
Copyright (c) 2011 Josep M. Bach. Released under the MIT license.
|
|
68
71
|
|
|
69
|
-
|
|
70
|
-
|
data/lib/domodoro/version.rb
CHANGED
data/test/support/em-minitest.rb
CHANGED
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: domodoro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 1317335842608397244
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Josep M. Bach
|
|
@@ -99,6 +99,7 @@ extra_rdoc_files: []
|
|
|
99
99
|
|
|
100
100
|
files:
|
|
101
101
|
- .gitignore
|
|
102
|
+
- .travis.yml
|
|
102
103
|
- Gemfile
|
|
103
104
|
- Guardfile
|
|
104
105
|
- Rakefile
|