Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
correct dep name to Web
  • Loading branch information
stmuk committed Sep 14, 2015
1 parent af42e9b commit 7f8834e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -12,7 +12,7 @@ install:
- panda install DBIish
- panda install HTTP::Easy
- panda install File::Temp
- panda install Web::Request
- panda install Web
- panda install Term::ANSIColor
- panda install Term::termios

Expand Down
28 changes: 14 additions & 14 deletions htmlify.pl
Expand Up @@ -6,20 +6,20 @@

sub MAIN(:$no-highlight = False) {
my %base-categories-table =
"best-of-rosettacode" => "Best of Rosettacode",
"99-problems" => "99 problems",
"cookbook" => "Cookbook examples",
"euler" => "Answers for Project Euler",
"games" => "Games written in Perl 6",
"interpreters" => "Language or DSL interpreters",
"module-management" => "Module management",
"parsers" => "Example grammars",
"perlmonks" => "Answers to perlmonks.org questions",
"rosalind" => "Bioinformatics programming problems",
"shootout" => "The Computer Language Benchmark Game",
"tutorial" => "Tutorial examples",
"wsg" => "The Winter Scripting Games",
"other" => "Uncategorized examples",
# "best-of-rosettacode" => "Best of Rosettacode",
# "99-problems" => "99 problems",
"cookbook" => "Cookbook examples",
# "euler" => "Answers for Project Euler",
# "games" => "Games written in Perl 6",
# "interpreters" => "Language or DSL interpreters",
# "module-management" => "Module management",
# "parsers" => "Example grammars",
# "perlmonks" => "Answers to perlmonks.org questions",
# "rosalind" => "Bioinformatics programming problems",
# "shootout" => "The Computer Language Benchmark Game",
# "tutorial" => "Tutorial examples",
# "wsg" => "The Winter Scripting Games",
# "other" => "Uncategorized examples",
;

my %menu-tabs =
Expand Down
2 changes: 1 addition & 1 deletion t/000-check-dependencies.t
Expand Up @@ -13,7 +13,7 @@ my @dependencies = qw{
Term::ANSIColor
Term::termios
URI
Web::Request
Web
};

plan @dependencies.elems;
Expand Down
2 changes: 1 addition & 1 deletion util/update-and-sync
Expand Up @@ -15,7 +15,7 @@ ulimit -t 3600 # 1 hour
export PATH=$PATH:$HOME/.rakudobrew/bin
rakudobrew build moar
rakudobrew build-panda
for dep in URI Pod::To::HTML LWP::Simple Algorithm::Soundex DBIish File::Temp Text::VimColour HTTP::Easy Web::Request Term::ANSIColor Term::termios
for dep in URI Pod::To::HTML LWP::Simple Algorithm::Soundex DBIish File::Temp Text::VimColour HTTP::Easy Web Term::ANSIColor Term::termios
do
panda install $dep
done
Expand Down

0 comments on commit 7f8834e

Please sign in to comment.