aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-02-08 10:54:37 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-02-08 10:54:37 +0100
commitf647155f9f7e89d17a4590257d5487e4750d5498 (patch)
tree859fd820c4eb0a2282db6b713058d7e4df361c88 /.config
parentb4af03b9576ded2f5b7112605c420f43705e442b (diff)
Update Dist::Maker config
Diffstat (limited to '.config')
-rw-r--r--.config/rdm/config.toml6
-rw-r--r--.config/rdm/templates/provide.raku15
-rw-r--r--.config/rdm/templates/readme.rakudoc41
3 files changed, 5 insertions, 57 deletions
diff --git a/.config/rdm/config.toml b/.config/rdm/config.toml
index 0ca38f3..6e1b81d 100644
--- a/.config/rdm/config.toml
+++ b/.config/rdm/config.toml
@@ -1,2 +1,6 @@
[new]
-path = "/home/tyil/projects/personal"
+path = "/home/tyil/projects/personal/raku"
+author = "Patrick Spek <p.spek@tyil.nl>"
+
+[add]
+prepend-license-lines = ""
diff --git a/.config/rdm/templates/provide.raku b/.config/rdm/templates/provide.raku
deleted file mode 100644
index 19d944f..0000000
--- a/.config/rdm/templates/provide.raku
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /usr/bin/env false
-
-use v{{ meta.perl }};
-
-{{ body }}
-
-=begin pod
-
-=NAME {{ this.provide }}
-=AUTHOR Patrick Spek <p.spek@tyil.work>
-=VERSION {{ meta.version }}
-
-=end pod
-
-# vim: ft=raku noet sw=8 ts=8
diff --git a/.config/rdm/templates/readme.rakudoc b/.config/rdm/templates/readme.rakudoc
deleted file mode 100644
index 5234c71..0000000
--- a/.config/rdm/templates/readme.rakudoc
+++ /dev/null
@@ -1,41 +0,0 @@
-=begin pod
-
-=NAME {{ name }}
-=AUTHOR {{ author }}
-=VERSION {{ version }}
-
-=head1 Description
-
-{{ description }}
-
-=head1 Installation
-
-Install this module through L<zef|https://github.com/ugexe/zef>:
-
-=begin code :lang<sh>
-zef install {{ name }}
-=end code
-
-=head1 Documentation
-
-Documentation is written as L<Pod6|https://docs.raku.org/language/pod>
-documents, and can be read with C<raku>'s C<--doc> option.
-
-=begin input
-raku --doc {{ name }}
-=end input
-
-At your option, you can also use prettier readers, such as
-L<C<p6doc>|https://modules.raku.org/search/?q=p6doc> or
-L<C<App::Rakuman>|https://modules.raku.org/dist/App::Rakuman:cpan:TYIL>.
-
-=begin input
-p6doc {{ name }}
-rakuman {{ name }}
-=end input
-
-=head1 License
-
-This module is distributed under the terms of the {{ license }}.
-
-=end pod