Skip to content

Commit

Permalink
1 failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger committed Mar 9, 2010
1 parent b446fcb commit c2572ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/warbler/task.rb
Expand Up @@ -57,6 +57,8 @@ def define_tasks
define_gems_task
define_webxml_task
define_app_task
define_java_classes_task
define_java_libs_task
define_jar_task
define_debug_task
end
Expand Down Expand Up @@ -97,7 +99,7 @@ def define_gems_task
task "gems" do
targets = find_gems_files
end
task "debug:gems" => "gems "do
task "debug:gems" => "gems" do
puts "", "gems files:"
puts *targets
end
Expand Down
2 changes: 2 additions & 0 deletions spec/warbler/task_spec.rb
Expand Up @@ -416,6 +416,8 @@ class << t; public :instance_variable_get; end
output = `#{FileUtils::RUBY} -S rake -f #{Warbler::WARBLER_HOME}/tasks/warbler.rake -T`
output.should =~ /war\s/
output.should =~ /war:app/
output.should =~ /war:java_libs/
output.should =~ /war:java_classes/
output.should =~ /war:clean/
output.should =~ /war:gems/
output.should =~ /war:jar/
Expand Down

0 comments on commit c2572ea

Please sign in to comment.