Skip to content

Commit

Permalink
CommandLine is stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Nov 29, 2011
1 parent d2fa7e3 commit 6345a20
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1,7 +1,7 @@
action: 2 Stable
assert: 0 Alpha
benchmark: 0 Alpha
commandline: 0 Alpha
commandline: 1 Stable
container: 3 Alpha
core: 2 Stable
decorate: 0 Beta
Expand Down
14 changes: 8 additions & 6 deletions setup.winxed
Expand Up @@ -241,6 +241,7 @@ function setup_stable_libraries(var rosella)
"string/tokenizer/Token"
);

// Templating and formatting text
setup_winxed_lib(rosella, "template", ["Core", "Path", "String", "FileSystem"],
"template/Includes",
"template/Template",
Expand Down Expand Up @@ -270,6 +271,13 @@ function setup_stable_libraries(var rosella)
"random/randomnumber/BoxMullerNormal",
"random/randomnumber/MersenneTwister"
);

// Working with commandline arguments
setup_winxed_lib(rosella, "commandline", ["Core", "String"],
"commandline/Arguments",
"commandline/Program",
"commandline/ProgramMode"
);
}

function setup_experimental_libraries(var rosella)
Expand Down Expand Up @@ -326,12 +334,6 @@ function setup_experimental_libraries(var rosella)
"dumper/dumphandler/Null"
);

setup_unstable_lib(rosella, "commandline", ["Core", "String"],
"commandline/Arguments",
"commandline/Program",
"commandline/ProgramMode"
);

setup_unstable_lib(rosella, "date", [],
"date/Doomsday"
);
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion t/harness
Expand Up @@ -13,6 +13,7 @@ sub core_tests() {
sub library_tests() {
my %h := {};
%h{"action"} := "NQP";
%h{"commandline"} := "Winxed";
%h{"filesystem"} := "NQP";
%h{"memoize"} := "NQP";
%h{"mockobject"} := "NQP";
Expand All @@ -30,7 +31,6 @@ sub library_tests() {

sub unstable_tests() {
my %h := {};
%h{"commandline"} := "Winxed";
%h{"container"} := "Winxed";
%h{"event"} := "Winxed";
%h{"prototype"} := "NQP";
Expand Down

0 comments on commit 6345a20

Please sign in to comment.