tdd 2.0.1 → 2.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/tdd +2 -2
  3. data/lib/tdd/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5203b3a1ed2e57a34818d6e998723787acee0bee
4
- data.tar.gz: d5dcf54cfa920ca8d276ad7b1bdf5662f672849f
3
+ metadata.gz: 979d185e4f0e1fbdc1cf7241b2aeecf4321c77ba
4
+ data.tar.gz: dfbcb4ac7bf4bba87e12412f7aa43b9a50d546d7
5
5
  SHA512:
6
- metadata.gz: 1c1d653371c847a05ac163788d53a373e5434aa1dcdc15f6df636dddb92dff55cd21f4084202eaaf137c49293f1e7fd1a1aae8eca60fedf9e8b53732e68dce02
7
- data.tar.gz: 86610580a693797f977bcff6e9f14f84d1f0889eaae84ee12675454f86216a8b034cdf8b2cdf7eaa13eeca1396564b7fa1cca4a41daf4843272f87eec608885f
6
+ metadata.gz: ce6dd7e7511d0e0d1f3d18a3f3505eb2ac482ec710c5dcd76eecb75abf332907aaa3ae91f928b43c889dd7cfed153592c7fa4168e84be06c2dede2b8b018153a
7
+ data.tar.gz: 9b48afc09c722a5d0b805bd6a852f2feaf310d70282ceae300d54efddabeaaf012a8853de7363589e16b311e576546c915919b299eeec69dbdcc462cf8a0465c
data/bin/tdd CHANGED
@@ -163,9 +163,9 @@ related to a functional or controller test:
163
163
  say("# finished test run #{ n } @ #{ Time.now.strftime('%H:%M:%S') } - #{ $?.exitstatus }", :color => :yellow)
164
164
  # TODO if blink1 installed - change its color to yellow and fade out after 30seconds.
165
165
  if tests_pass
166
- system("command -v blink1-tool && blink1-tool -d0 --rgb 0,255,0 --blink 3 > /dev/null &")
166
+ system("command -v blink1-tool > /dev/null && blink1-tool -d0 --rgb 0,255,0 --blink 3 > /dev/null &")
167
167
  else
168
- system("command -v blink1-tool && blink1-tool -d0 --rgb 255,0,0 --blink 3 > /dev/null &")
168
+ system("command -v blink1-tool > /dev/null && blink1-tool -d0 --rgb 255,0,0 --blink 3 > /dev/null &")
169
169
  end
170
170
  puts
171
171
  n.succ!
@@ -1,3 +1,3 @@
1
1
  module Tdd
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tdd
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyler Montgomery