build_watcher 0.1.1 → 0.1.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/History.txt +6 -1
- data/README.txt +1 -2
- data/Rakefile +4 -2
- data/lib/build_watcher.rb +1 -1
- data/spec/update_listeners_cli_spec.rb +1 -1
- metadata +6 -5
data/History.txt
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
=== 0.1.
|
|
1
|
+
=== 0.1.2 / 2010-04-21 / 7578a285145418053d914ce9cb724d231ec4a182
|
|
2
|
+
|
|
3
|
+
* Version bump to 0.1.2
|
|
4
|
+
* Updated README, authors, and small spec issue
|
|
5
|
+
|
|
6
|
+
=== 0.1.1 / 21-APR-2010 / afeaf7c9f104aa230caff92b04247fbf68c37cba
|
|
2
7
|
|
|
3
8
|
* Added files forgotten in manifest
|
|
4
9
|
|
data/README.txt
CHANGED
|
@@ -5,8 +5,7 @@
|
|
|
5
5
|
== DESCRIPTION:
|
|
6
6
|
|
|
7
7
|
Monitors the build status of projects on http://codefumes.com and
|
|
8
|
-
sends out notifications via a USB-connected
|
|
9
|
-
a ZigBee wireless chip.
|
|
8
|
+
sends out notifications via a USB-connected ZigBee wireless chip.
|
|
10
9
|
|
|
11
10
|
|
|
12
11
|
== FEATURES/PROBLEMS:
|
data/Rakefile
CHANGED
|
@@ -20,8 +20,10 @@ Hoe.plugin :git
|
|
|
20
20
|
|
|
21
21
|
$hoe = Hoe.spec 'build_watcher' do
|
|
22
22
|
self.developer 'Tom Kersten', 'tom@whitespur.com'
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
self.developer 'Michael Thies', 'michaelthies78@gmail.com'
|
|
24
|
+
extra_deps = [['codefumes','>= 0.1.8'], ['serialport', '= 1.0.2']]
|
|
25
|
+
extra_dev_deps = [['hoe-git', '>= 1.3.0']]
|
|
26
|
+
git_remotes = ['gnr']
|
|
25
27
|
end
|
|
26
28
|
|
|
27
29
|
Dir['tasks/**/*.rake'].each { |t| load t }
|
data/lib/build_watcher.rb
CHANGED
|
@@ -22,7 +22,7 @@ describe UpdateListeners::CLI, "execute" do
|
|
|
22
22
|
|
|
23
23
|
it "requests the quantity of projects from the serial device" do
|
|
24
24
|
@zgb_device.should_receive(:project_quantity).and_return(@project_quantity)
|
|
25
|
-
UpdateListeners::CLI.execute(STDOUT, [])
|
|
25
|
+
UpdateListeners::CLI.execute(STDOUT, ["-d", "/dev/something"])
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
it "requests the project information from the serial device for each project" do
|
metadata
CHANGED
|
@@ -5,11 +5,12 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.1.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Tom Kersten
|
|
13
|
+
- Michael Thies
|
|
13
14
|
autorequire:
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
@@ -61,10 +62,10 @@ dependencies:
|
|
|
61
62
|
version_requirements: *id003
|
|
62
63
|
description: |-
|
|
63
64
|
Monitors the build status of projects on http://codefumes.com and
|
|
64
|
-
sends out notifications via a USB-connected
|
|
65
|
-
a ZigBee wireless chip.
|
|
65
|
+
sends out notifications via a USB-connected ZigBee wireless chip.
|
|
66
66
|
email:
|
|
67
67
|
- tom@whitespur.com
|
|
68
|
+
- michaelthies78@gmail.com
|
|
68
69
|
executables:
|
|
69
70
|
- update_listeners
|
|
70
71
|
extensions: []
|
|
@@ -122,6 +123,6 @@ rubyforge_project: build_watcher
|
|
|
122
123
|
rubygems_version: 1.3.6
|
|
123
124
|
signing_key:
|
|
124
125
|
specification_version: 3
|
|
125
|
-
summary: Monitors the build status of projects on http://codefumes.com and sends out notifications via a USB-connected
|
|
126
|
+
summary: Monitors the build status of projects on http://codefumes.com and sends out notifications via a USB-connected ZigBee wireless chip.
|
|
126
127
|
test_files: []
|
|
127
128
|
|