From ac1cf04b2921a6ad0dcd79000f560cff098d5b36 Mon Sep 17 00:00:00 2001 From: Thomas Walpole Date: Tue, 19 Nov 2013 13:53:06 -0800 Subject: [PATCH] change rspec formatter under jruby so travis will see status --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 52b51cdc..72d55f0a 100644 --- a/Rakefile +++ b/Rakefile @@ -10,6 +10,8 @@ end RSpec::Core::RakeTask.new(:spec_with_chrome) do |t| t.rspec_opts = %w[--color] + #jruby buffers the progress formatter so travis doesnt see output often enough + t.rspec_opts << '--format documentation' if RUBY_PLATFORM=='java' t.pattern = './spec{,/*/**}/*{_spec.rb,_spec_chrome.rb}' end