# HG changeset patch
# User Mahlon E. Smith <mahlon@martini.nu>
# Date 1345504483 25200
# Node ID 38db5185d698fe590c63f12899b59652ea252bb6
# Parent  050dd6dcf346518ed151b6ce07c43fcf89c508e2
Don't forget to super() so the failures are emitted after the spec run.

diff -r 050dd6dcf346 -r 38db5185d698 specky/ruby/specky_formatter.rb
--- a/specky/ruby/specky_formatter.rb	Sat Aug 18 01:47:43 2012 -0700
+++ b/specky/ruby/specky_formatter.rb	Mon Aug 20 16:14:43 2012 -0700
@@ -196,7 +196,7 @@
 class SpeckyFormatterConsole < SpeckyFormatter
 
 	def example_passed( ex );  print '.'; end
-	def example_failed( ex );  print 'F'; end
+	def example_failed( ex );  print 'F'; super; end
 	def example_pending( ex ); print '*'; end
 
 	def close