Skip to content

Commit

Permalink
Merge pull request #8 from ellemenno/v3.0.1
Browse files Browse the repository at this point in the history
v3.0.1
  • Loading branch information
pixeldroid authored Dec 18, 2016
2 parents 8ff2703 + 60d88f4 commit 799ce89
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Running `rake` in your project directory will execute the default task, which pr
rake test:run # runs test/bin/FooTest.loom for the console
rake test:sdk[id] # sets the provided SDK version into test/loom.config
rake version # reports loomlib version
(using loomtasks v3.0.0)
(using loomtasks v3.0.1)

If you are looking for more detail on any of the tasks, use `rake help`.

Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/rakefiles/support.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module LoomTasks

VERSION = '3.0.0'
VERSION = '3.0.1'

EXIT_OK = 0

Expand Down
5 changes: 4 additions & 1 deletion lib/tasks/templates/LoomlibTest.ls.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package
{
import system.application.ConsoleApplication;
import system.Process;

import pixeldroid.bdd.SpecExecutor;

Expand All @@ -13,9 +14,11 @@ package
{
SpecExecutor.parseArgs();

SpecExecutor.exec([
var returnCode:Number = SpecExecutor.exec([
<%= lib_name %>Spec
]);

Process.exit(returnCode);
}
}

Expand Down

0 comments on commit 799ce89

Please sign in to comment.