# File lib/spork/runner.rb, line 37 def supported_test_frameworks_text text = StringIO.new text.puts "Supported test frameworks:" text.puts Spork::TestFramework.supported_test_frameworks.sort { |a,b| a.short_name <=> b.short_name }.map { |s| (s.available? ? '(*) ' : '( ) ') + s.short_name } text.puts "\nLegend: ( ) - not detected in project (*) - detected\n" text.string end