txt
stringlengths
202
72.4k
### ---------------------------------------------------- ### -- App::InstallerMaker::WiX ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: dist.ini ### ---------------------------------------------------- name = App::InstallerMaker::WiX [ReadmeFromPod] filename = doc/App-InstallerMaker-WiX.rakudoc [UploadTo...
### ---------------------------------------------------- ### -- App::InstallerMaker::WiX ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: t/01-basic.rakutest ### ---------------------------------------------------- use Test; use App::InstallerMaker::WiX::Configuration; use App::InstallerMaker::WiX::Installer...
### ---------------------------------------------------- ### -- App::InstallerMaker::WiX ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: lib/App/InstallerMaker/WiX.rakumod ### ---------------------------------------------------- use App::InstallerMaker::WiX::Configuration; use App::InstallerMaker::WiX::PreC...
### ---------------------------------------------------- ### -- App::InstallerMaker::WiX ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: lib/App/InstallerMaker/WiX/InstallerBuilder.rakumod ### ---------------------------------------------------- unit module App::InstallerMaker::WiX::InstallerBuilder; use Ap...
### ---------------------------------------------------- ### -- App::InstallerMaker::WiX ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: lib/App/InstallerMaker/WiX/PreCheck.rakumod ### ---------------------------------------------------- unit module App::InstallerMaker::WiX::PreCheck; my constant @programs...
### ---------------------------------------------------- ### -- App::InstallerMaker::WiX ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: lib/App/InstallerMaker/WiX/Configuration.rakumod ### ---------------------------------------------------- use YAMLish; class App::InstallerMaker::WiX::Configuration { ...
### ---------------------------------------------------- ### -- App::MPD::Notify ### -- Licenses: GPL-3.0 ### -- Authors: Patrick Spek <p.spek@tyil.work> ### -- File: META6.json ### ---------------------------------------------------- { "perl": "6", "name": "App::MPD::Notify", "version": "0.1.0", "auth"...
### ---------------------------------------------------- ### -- App::MPD::Notify ### -- Licenses: GPL-3.0 ### -- Authors: Patrick Spek <p.spek@tyil.work> ### -- File: LICENSE ### ---------------------------------------------------- GNU GENERAL PUBLIC LICENSE Version 3, 29 June...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:skaji", "authors": [ "Shoichi Kaji" ], "build-depends": [ ], "depends": [ ...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. Everyone is permit...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: README.md ### ---------------------------------------------------- [![Actions Status](https://github.com/skaji/mi6/actions/workflows/test.yml/badge.svg)](https://github.com/sk...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: dist.ini ### ---------------------------------------------------- name = App::Mi6 source-url = https://github.com/skaji/mi6.git [ReadmeFromPod] filename = lib/App/Mi6.rakumod...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: t/01-basic.rakutest ### ---------------------------------------------------- use Test; use App::Mi6; plan 1; pass "happy hacking!";
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: xt/02-badge.rakutest ### ---------------------------------------------------- use Test; use App::Mi6::Badge; my $user = "user"; my $repo = "repo"; my $name = "test"; my $m1...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: xt/Util.rakumod ### ---------------------------------------------------- unit module Util; my $base = $?FILE.IO.dirname.IO.parent; my class Result { has $.out; has $...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: xt/01-actual.rakutest ### ---------------------------------------------------- use Test; use lib "xt"; use Util; use File::Temp; use App::Mi6::JSON; my $r; $r = mi6 "new"; is...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6.rakumod ### ---------------------------------------------------- use App::Mi6::Badge; use App::Mi6::Fez; use App::Mi6::INI; use App::Mi6::JSON; use App::Mi6::Relea...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release; has $.ecosystem; method !classes() { my @klass = ...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Fez.rakumod ### ---------------------------------------------------- unit class App::Mi6::Fez; use Fez::Util::Config; use App::Mi6::Util; method user() { con...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Badge.rakumod ### ---------------------------------------------------- unit class App::Mi6::Badge; has $.provider is required; has $.user is required; has $.repo ...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/INI.rakumod ### ---------------------------------------------------- unit class App::Mi6::INI; # Copy from https://github.com/tadzik/perl6-Config-INI # Author: Ta...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Util.rakumod ### ---------------------------------------------------- unit module App::Mi6::Util; sub prompt($message, :$default) is export { $*OUT.print("$me...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Template.rakumod ### ---------------------------------------------------- unit module App::Mi6::Template; our sub template(:$module, :$module-file, :$dist, :$auth...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/JSON.rakumod ### ---------------------------------------------------- unit class App::Mi6::JSON; method encode(::?CLASS:U: %hash) { Rakudo::Internals::JSON.to...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Run.rakumod ### ---------------------------------------------------- unit class App::Mi6::Run; has $.raw-cmd; method cmd() { my $cmd = $.raw-cmd; $cmd .=...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/CheckUntrackedFiles.rakumod ### ---------------------------------------------------- use App::Mi6::Util; unit class App::Mi6::Release::CheckUntrackedFiles;...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/DistTest.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::DistTest; method run(*%opt) { %opt<app>.cmd("t...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/CheckChanges.rakumod ### ---------------------------------------------------- use App::Mi6::Util; unit class App::Mi6::Release::CheckChanges; method run(*...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/RewriteChanges.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::RewriteChanges; method run(:$next-version, :...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/UploadToZef.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::UploadToZef; use App::Mi6::Util; use App::Mi6::...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/CheckOrigin.rakumod ### ---------------------------------------------------- use App::Mi6::Util; unit class App::Mi6::Release::CheckOrigin; method run(*%o...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/UploadToCPAN.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::UploadToCPAN; no precompilation; use CPAN::Upl...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/CleanDist.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::CleanDist; use Shell::Command; method run(*%opt)...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/RegenerateFiles.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::RegenerateFiles; method run(*%opt) { %o...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/MakeDist.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::MakeDist; use Shell::Command; use App::Mi6::JSON; u...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/CreateGitTag.rakumod ### ---------------------------------------------------- use App::Mi6::Util; unit class App::Mi6::Release::CreateGitTag; method run(*...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/CheckAuth.rakumod ### ---------------------------------------------------- unit class App::Mi6::Release::CheckAuth; use App::Mi6::JSON; use App::Mi6::Util...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/GitCommit.rakumod ### ---------------------------------------------------- use App::Mi6::Util; unit class App::Mi6::Release::GitCommit; method run(*%opt) ...
### ---------------------------------------------------- ### -- App::Mi6 ### -- Licenses: Artistic-2.0 ### -- Authors: Shoichi Kaji ### -- File: lib/App/Mi6/Release/BumpVersion.rakumod ### ---------------------------------------------------- use App::Mi6::Util; unit class App::Mi6::Release::BumpVersion; use App::Mi6::...
### ---------------------------------------------------- ### -- App::MoarVM::ConfprogCompiler ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: META6.json ### ---------------------------------------------------- { "auth" : "cpan:TIMOTIMO", "authors" : [ "Timo Paulssen" ], "build-depen...
### ---------------------------------------------------- ### -- App::MoarVM::ConfprogCompiler ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. ...
### ---------------------------------------------------- ### -- App::MoarVM::ConfprogCompiler ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: README.md ### ---------------------------------------------------- [![Build Status](https://travis-ci.org/timo/App-MoarVM-ConfprogCompiler.svg?branch=mas...
### ---------------------------------------------------- ### -- App::MoarVM::ConfprogCompiler ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: .travis.yml ### ---------------------------------------------------- os: - linux - osx language: perl6 perl6: - latest install: - rakudobrew buil...
### ---------------------------------------------------- ### -- App::MoarVM::ConfprogCompiler ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: dist.ini ### ---------------------------------------------------- name = App-MoarVM-ConfprogCompiler [ReadmeFromPod] ; enable = false filename = lib/App...
### ---------------------------------------------------- ### -- App::MoarVM::ConfprogCompiler ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: tools/generate_single_file_script.p6 ### ---------------------------------------------------- use File::Find; my @files = find(dir => "lib", name => *.e...
### ---------------------------------------------------- ### -- App::MoarVM::ConfprogCompiler ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: t/01-example-programs.t ### ---------------------------------------------------- use v6.c; use Test; { use App::MoarVM::ConfprogCompiler; lives...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:raku-community-modules", "authors": [ "Timo Paulssen" ], "build-depen...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. Everyon...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: README.md ### ---------------------------------------------------- [![Actions Status](https://github.com/raku-community-modules/App-MoarVM-Debug/actions/workflows/l...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: dist.ini ### ---------------------------------------------------- name = App-MoarVM-Debug [ReadmeFromPod] filename = doc/App-MoarVM-Debug.rakudoc [UploadToZef] [...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: t/01-basic.rakutest ### ---------------------------------------------------- use Test; use App::MoarVM::Debug::Formatter; use App::MoarVM::Debug::Breakpoints; plan...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: lib/App/MoarVM/Debug.rakumod ### ---------------------------------------------------- use MoarVM::Remote; use App::MoarVM::Debug::Formatter; use App::MoarVM::Debug:...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: lib/App/MoarVM/Debug/Breakpoints.rakumod ### ---------------------------------------------------- unit module MoarVM::Remote::CLI::Breakpoints; use App::MoarVM::De...
### ---------------------------------------------------- ### -- App::MoarVM::Debug ### -- Licenses: Artistic-2.0 ### -- Authors: Timo Paulssen ### -- File: lib/App/MoarVM/Debug/Formatter.rakumod ### ---------------------------------------------------- unit module MoarVM::Remote::CLI::Formatter; use String::Utils <root...
### ---------------------------------------------------- ### -- App::MoarVM::HeapAnalyzer::Model ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:raku-community-modules", "author": "Jonathan Worthington <jnthn@jnthn.net>",...
### ---------------------------------------------------- ### -- App::MoarVM::HeapAnalyzer::Model ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Fou...
### ---------------------------------------------------- ### -- App::MoarVM::HeapAnalyzer::Model ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: README.md ### ---------------------------------------------------- [![Actions Status](https://github.com/raku-community-modules/App-MoarVM-HeapAnalyzer/actions/wor...
### ---------------------------------------------------- ### -- App::MoarVM::HeapAnalyzer::Model ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: dist.ini ### ---------------------------------------------------- name = App-MoarVM-HeapAnalyzer [ReadmeFromPod] filename = lib/App/MoarVM/HeapAnalyzer/Shell.raku...
### ---------------------------------------------------- ### -- App::MoarVM::HeapAnalyzer::Model ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: t/01-basic.rakutest ### ---------------------------------------------------- use Test; use App::MoarVM::HeapAnalyzer::Shell; plan 1; pass "Module loaded ok";
### ---------------------------------------------------- ### -- App::MoarVM::HeapAnalyzer::Model ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: lib/App/MoarVM/HeapAnalyzer/Shell.rakumod ### ---------------------------------------------------- use App::MoarVM::HeapAnalyzer::Model; unit class App::MoarVM::H...
### ---------------------------------------------------- ### -- App::MoarVM::HeapAnalyzer::Model ### -- Licenses: Artistic-2.0 ### -- Authors: ### -- File: lib/App/MoarVM/HeapAnalyzer/Model.rakumod ### ---------------------------------------------------- unit class App::MoarVM::HeapAnalyzer::Model; use nqp; # We res...
### ---------------------------------------------------- ### -- App::ModuleSnap ### -- Licenses: Artistic-2.0 ### -- Authors: Jonathan Stowe <jns+gh@gellyfish.co.uk> ### -- File: META6.json ### ---------------------------------------------------- { "support": { "email": "jns+gh@gellyfish.co.uk", "source": "gi...
### ---------------------------------------------------- ### -- App::ModuleSnap ### -- Licenses: Artistic-2.0 ### -- Authors: Jonathan Stowe <jns+gh@gellyfish.co.uk> ### -- File: README.md ### ---------------------------------------------------- # App::ModuleSnap Create a "snapshot" of the installed Raku modules so th...
### ---------------------------------------------------- ### -- App::ModuleSnap ### -- Licenses: Artistic-2.0 ### -- Authors: Jonathan Stowe <jns+gh@gellyfish.co.uk> ### -- File: LICENCE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Fo...
### ---------------------------------------------------- ### -- App::ModuleSnap ### -- Licenses: Artistic-2.0 ### -- Authors: Jonathan Stowe <jns+gh@gellyfish.co.uk> ### -- File: t/010-use.t ### ---------------------------------------------------- #!raku use v6; use Test; use-ok('App::ModuleSnap', "can use the modul...
### ---------------------------------------------------- ### -- App::ModuleSnap ### -- Licenses: Artistic-2.0 ### -- Authors: Jonathan Stowe <jns+gh@gellyfish.co.uk> ### -- File: t/001-meta.t ### ---------------------------------------------------- #!raku use v6; use Test; my Bool $got-test-meta = True; my &m-meta-...
### ---------------------------------------------------- ### -- App::ModuleSnap ### -- Licenses: Artistic-2.0 ### -- Authors: Jonathan Stowe <jns+gh@gellyfish.co.uk> ### -- File: t/020-basic.t ### ---------------------------------------------------- #!raku use v6; use Test; use JSON::Fast; use App::ModuleSnap (); us...
### ---------------------------------------------------- ### -- App::ModuleSnap ### -- Licenses: Artistic-2.0 ### -- Authors: Jonathan Stowe <jns+gh@gellyfish.co.uk> ### -- File: lib/App/ModuleSnap.rakumod ### ---------------------------------------------------- use v6.*; =begin pod =head1 NAME =head1 SYNOPSIS =hea...
### ---------------------------------------------------- ### -- App::Nopaste ### -- Licenses: Artistic-2.0 ### -- Authors: Zoffix Znet ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:raku-community-modules", "authors": [ "Zoffix Znet" ], "build-depends": [ ]...
### ---------------------------------------------------- ### -- App::Nopaste ### -- Licenses: Artistic-2.0 ### -- Authors: Zoffix Znet ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. Eve...
### ---------------------------------------------------- ### -- App::Nopaste ### -- Licenses: Artistic-2.0 ### -- Authors: Zoffix Znet ### -- File: README.md ### ---------------------------------------------------- [![Actions Status](https://github.com/raku-community-modules/App-Nopaste/workflows/test/badge.svg)](https...
### ---------------------------------------------------- ### -- App::Nopaste ### -- Licenses: Artistic-2.0 ### -- Authors: Zoffix Znet ### -- File: dist.ini ### ---------------------------------------------------- name = App-Nopaste [ReadmeFromPod] ; enable = false filename = lib/App/Nopaste.rakumod [UploadToZef] [P...
### ---------------------------------------------------- ### -- App::Nopaste ### -- Licenses: Artistic-2.0 ### -- Authors: Zoffix Znet ### -- File: t/01-use.rakutest ### ---------------------------------------------------- use Test; plan 1; use-ok 'App::Nopaste'; # vim: expandtab shiftwidth=4
### ---------------------------------------------------- ### -- App::Nopaste ### -- Licenses: Artistic-2.0 ### -- Authors: Zoffix Znet ### -- File: xt/meta.t ### ---------------------------------------------------- #!perl6 use lib 'lib'; use Test; use Test::META; meta-ok; done-testing;
### ---------------------------------------------------- ### -- App::Nopaste ### -- Licenses: Artistic-2.0 ### -- Authors: Zoffix Znet ### -- File: lib/App/Nopaste.rakumod ### ---------------------------------------------------- use Pastebin::Gist; use Pastebin::Shadowcat; unit class App::Nopaste:ver<1.002>:auth<zef:r...
### ---------------------------------------------------- ### -- App::OrgSleep ### -- Licenses: GPL-3.0-or-later ### -- Authors: Aleks-Daniel Jakimenko-Aleksejev <alex.jakimenko@gmail.com> ### -- File: META6.json ### ---------------------------------------------------- { "perl" : "6.c", "name" : "A...
### ---------------------------------------------------- ### -- App::OrgSleep ### -- Licenses: GPL-3.0-or-later ### -- Authors: Aleks-Daniel Jakimenko-Aleksejev <alex.jakimenko@gmail.com> ### -- File: LICENSE ### ---------------------------------------------------- GNU GENERAL PUBLIC LICENSE Vers...
### ---------------------------------------------------- ### -- App::OrgSleep ### -- Licenses: GPL-3.0-or-later ### -- Authors: Aleks-Daniel Jakimenko-Aleksejev <alex.jakimenko@gmail.com> ### -- File: README.md ### ---------------------------------------------------- orgsleep ======== Use Emacs Org-mode to graph your ...
### ---------------------------------------------------- ### -- App::OrgSleep ### -- Licenses: GPL-3.0-or-later ### -- Authors: Aleks-Daniel Jakimenko-Aleksejev <alex.jakimenko@gmail.com> ### -- File: examples/tom-thumb.json ### ---------------------------------------------------- ### -- Chunk 1 of 2 { "67": [ [ ...
### ---------------------------------------------------- ### -- App::OrgSleep ### -- Licenses: GPL-3.0-or-later ### -- Authors: Aleks-Daniel Jakimenko-Aleksejev <alex.jakimenko@gmail.com> ### -- File: examples/tom-thumb.json ### ---------------------------------------------------- ### -- Chunk 2 of 2 ], [ ...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: LICENSE.md ### ---------------------------------------------------- Copyright (c) 2018 Ahmad M. Zawawi Permission is hereby granted, free of charge, to any person obtai...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: test-nqp.p6 ### ---------------------------------------------------- use v6; use Data::Dump; my $source = q:to/END/; class Foo { sub foo1 { } sub foo2...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: META6.json ### ---------------------------------------------------- { "name" : "App::Perl6LangServer", "license" : "MIT", "version" : "0.2.0",...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: CHANGELOG.md ### ---------------------------------------------------- # Changelog for App::Perl6LangServer ## 0.2.0 - :tada: Add experimental hover support. - :arrow_up...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: test-regex.p6 ### ---------------------------------------------------- use v6; my $source-code = q:to/END/; class ClassA::B { # Some class FakeComment weird comment ...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: README.md ### ---------------------------------------------------- # App::Perl6LangServer [![Build Status](https://travis-ci.org/azawawi/app-perl6langserver.svg?branch...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: appveyor.yml ### ---------------------------------------------------- os: Visual Studio 2015 platform: x64 install: # Install rakudostar for faster CI builds. No win...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: test-ast.p6 ### ---------------------------------------------------- use v6; my $source-code = q:to/END/; class ClassA { method A { } sub B { } sub foo { my ...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: .travis.yml ### ---------------------------------------------------- language: generic os: - linux - osx env: global: - export PATH="/opt/rakudo-pkg/bin:/opt...
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: t/00-compile.t ### ---------------------------------------------------- use v6; use Test; plan 1; use-ok('App::Perl6LangServer');
### ---------------------------------------------------- ### -- App::Perl6LangServer ### -- Licenses: MIT ### -- Authors: Ahmad M. Zawawi ### -- File: t/99-author-meta.t ### ---------------------------------------------------- use v6; use Test; plan 1; if ?%*ENV<AUTHOR_TESTING> { require Test::META <&meta-ok>; ...
### ---------------------------------------------------- ### -- App::Prove6 ### -- Licenses: Artistic-2.0 ### -- Authors: Leon Timmermans ### -- File: META6.json ### ---------------------------------------------------- { "auth": "zef:leont", "authors": [ "Leon Timmermans" ], "build-depends": [ ], "depen...
### ---------------------------------------------------- ### -- App::Prove6 ### -- Licenses: Artistic-2.0 ### -- Authors: Leon Timmermans ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. Everyone is ...
### ---------------------------------------------------- ### -- App::Prove6 ### -- Licenses: Artistic-2.0 ### -- Authors: Leon Timmermans ### -- File: README.md ### ---------------------------------------------------- NAME ==== prove6 - Run tests through a TAP harness. USAGE ===== `prove6 [options] [files or directo...
### ---------------------------------------------------- ### -- App::Prove6 ### -- Licenses: Artistic-2.0 ### -- Authors: Leon Timmermans ### -- File: dist.ini ### ---------------------------------------------------- name = App-Prove6 [ReadmeFromPod] ; enable = false filename = lib/App/Prove6.rakumod [PruneFiles] ; m...
### ---------------------------------------------------- ### -- App::Prove6 ### -- Licenses: Artistic-2.0 ### -- Authors: Leon Timmermans ### -- File: t/success.t ### ---------------------------------------------------- use Test; pass; done-testing;
### ---------------------------------------------------- ### -- App::Prove6 ### -- Licenses: Artistic-2.0 ### -- Authors: Leon Timmermans ### -- File: lib/App/Prove6.rakumod ### ---------------------------------------------------- use v6.c; unit module App::Prove6:ver<0.0.18>:auth<zef:leont>; use Getopt::Long:ver<0.3....
### ---------------------------------------------------- ### -- App::RaCoCo ### -- Licenses: Artistic-2.0 ### -- Authors: Mikhail Khorkov ### -- File: META6.json ### ---------------------------------------------------- { "name": "App::RaCoCo", "description": "Raku Code Coverage tool.", "version": "2.0.1", "perl...
### ---------------------------------------------------- ### -- App::RaCoCo ### -- Licenses: Artistic-2.0 ### -- Authors: Mikhail Khorkov ### -- File: LICENSE ### ---------------------------------------------------- The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. Everyone is permitted...
### ---------------------------------------------------- ### -- App::RaCoCo ### -- Licenses: Artistic-2.0 ### -- Authors: Mikhail Khorkov ### -- File: racoco.ini ### ---------------------------------------------------- exec = prove6 t [full] exec = prove6 t xt [html] exec = prove6 t xt reporter = html-color-blind [c...