-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance #89
Open
Altai-man
wants to merge
36
commits into
master
Choose a base branch
from
enchance
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Enhance #89
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
9ee3149
s/Perl6/Raku/ in README
Altai-man d9e6b35
Update extensions
Altai-man 4c45b00
Remove broken and unused module
Altai-man d4fda22
Rename runner and fix some issues
Altai-man 85255ea
Draft out a new TODO
Altai-man f91f413
Make runner code more idiomatic
Altai-man c91a62f
Fix single category case
Altai-man 407a5b9
Improve example
Altai-man 2df0bec
Rename and skip (for now) interactive example
Altai-man da0578c
Replace two outdated examples with a single working one
Altai-man b8b7db5
Unlink a file after creation so that it doesn't mess up with vcs
Altai-man f2e28ef
Ignore interactive script
Altai-man b581600
More renaming and ignoring
Altai-man 179b890
Even more renaming
Altai-man 3c89368
Add some more files to longrunners section
Altai-man e3567b5
Fix instructions and rename a file
Altai-man de55fda
s/Mojo/Cro/
Altai-man 4327ff6
Use newer rakudo
Altai-man e2df01f
Add .cro.yml config for Cro
Altai-man 0b14926
Raku-ify footer
Altai-man fce5314
Fix channel name
Altai-man 6e8c209
Raku-fy makefile
Altai-man 18005e0
Use proper extensions
Altai-man 27d294c
Minor style tweaks
Altai-man d3b35ca
Add info for incomplete examples
Altai-man 259b48d
Great +x changes
Altai-man a30d3da
Revive links to docs
Altai-man 6668952
More Raku-ifying
Altai-man d05e924
More Raku-ifying
Altai-man 3e7d4da
More Cro-ifying
Altai-man 36094c1
Extensions renaming, round 1
Altai-man 06cdb38
Add fresh results
Altai-man 10c76b0
Extensions renaming, round 2
Altai-man 553f334
Extensions renaming, round 3
Altai-man c3b6fcc
Extensions renaming, round 4
Altai-man 86a60c3
Add util script to validate examples
Altai-man File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
env: [] | ||
endpoints: | ||
- | ||
protocol: http | ||
id: http | ||
host-env: EXAMPLES_HOST | ||
name: HTTP | ||
port-env: EXAMPLES_PORT | ||
id: test | ||
name: test | ||
links: [] | ||
cro: 1 | ||
entrypoint: service.p6 | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ language: perl6 | |
|
||
perl6: | ||
- latest | ||
- '2018.06' | ||
- '2019.11' | ||
|
||
install: | ||
- rakudobrew build zef | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,40 @@ | ||
{ | ||
"perl" : "6.*", | ||
"name" : "perl6-examples", | ||
"version" : "0.0.1", | ||
"auth" : "github:perl6", | ||
"license" : "Artistic-2.0", | ||
"description" : "Many examples of Perl 6 code", | ||
"depends" : [ "URI", "Pod::To::HTML", "LWP::Simple", "Algorithm::Soundex", | ||
"DBIish", "File::Find", "File::Temp", "Text::VimColour", | ||
"HTTP::Easy", "Terminal::ANSIColor", "Web::Request", "HTML::Escape", | ||
"Term::termios" ], | ||
"test-depends" : [ "Test", "Test::META" ], | ||
"source-url" : "git://github.com/perl6/perl6-examples.git", | ||
"provides" : { | ||
"Examples" : "lib/Examples.pm", | ||
"Examples::Categories" : "lib/Examples/Categories.pm", | ||
"Examples::Example" : "lib/Examples.pm", | ||
"Text::Levenshtein" : "lib/Text/Levenshtein.pm", | ||
"Pod6" : "lib/Pod/Parser.pm", | ||
"Pod6Block" : "lib/Pod/Parser.pm", | ||
"Context" : "lib/Pod/Parser.pm", | ||
"Pod::Parser" : "lib/Pod/Parser.pm", | ||
"Pod::To::Perl" : "lib/Pod/To/Perl.pm" | ||
} | ||
} | ||
"name": "perl6-examples", | ||
"description": "Many examples of Raku code", | ||
"version": "0.0.1", | ||
"perl": "6.*", | ||
"auth": "github:Raku", | ||
"depends": [ | ||
"URI", | ||
"Pod::To::HTML", | ||
"LWP::Simple", | ||
"Algorithm::Soundex", | ||
"DBIish", | ||
"File::Find", | ||
"File::Temp", | ||
"HTTP::Easy", | ||
"Terminal::ANSIColor", | ||
"Web::Request", | ||
"HTML::Escape", | ||
"Term::termios", | ||
"Cro::HTTP", | ||
"Cro::WebApp", | ||
"Terminal::Spinners" | ||
], | ||
"test-depends": [ | ||
"Test", | ||
"Test::META" | ||
], | ||
"provides": { | ||
"Context": "lib/Pod/Parser.pm", | ||
"Examples": "lib/Examples.pm", | ||
"Examples::Categories": "lib/Examples/Categories.pm", | ||
"Examples::Example": "lib/Examples.pm", | ||
"Pod6": "lib/Pod/Parser.pm", | ||
"Pod6Block": "lib/Pod/Parser.pm", | ||
"Pod::Parser": "lib/Pod/Parser.pm", | ||
"Pod::To::Perl": "lib/Pod/To/Perl.pm" | ||
}, | ||
"license": "Artistic-2.0", | ||
"source-url": "git://github.com/perl6/perl6-examples.git" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- [x] Ensure run-examples runs without errors | ||
- [ ] Update extensions | ||
- [ ] Revise website generation |
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/local/bin/perl6 | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
# FROM: http://daniel.ruoso.com/categoria/perl/rpn-calculator-perl6 by [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
categories/99-problems/P01-scottp.pl → categories/99-problems/P01-scottp.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
use v6; | ||
|
||
=begin pod | ||
|
1 change: 1 addition & 0 deletions
1
categories/99-problems/P01-topo.pl → categories/99-problems/P01-topo.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/99-problems/P02-scottp.pl → categories/99-problems/P02-scottp.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
1 change: 1 addition & 0 deletions
1
categories/99-problems/P02-topo.pl → categories/99-problems/P02-topo.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
use v6; | ||
|
||
=begin pod | ||
|
1 change: 1 addition & 0 deletions
1
categories/99-problems/P03-scottp.pl → categories/99-problems/P03-scottp.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
use v6; | ||
|
||
=begin pod | ||
|
1 change: 1 addition & 0 deletions
1
categories/99-problems/P03-topo.pl → categories/99-problems/P03-topo.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
use v6; | ||
|
||
=begin pod | ||
|
1 change: 1 addition & 0 deletions
1
categories/99-problems/P04-scottp.pl → categories/99-problems/P04-scottp.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
use v6; | ||
|
||
=begin pod | ||
|
1 change: 1 addition & 0 deletions
1
categories/99-problems/P04-topo.pl → categories/99-problems/P04-topo.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
use v6; | ||
|
||
=begin pod | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are there those two files above?