Skip to content

Commit

Permalink
BUnch of renamings
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanstowe committed Jan 21, 2021
1 parent 5cfd040 commit b668f81
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.4",
"auth": "github:jonathanstowe",
"api": "1.0",
"description": "A Perl 6 interface to the Velleman USB Experiment Kit",
"description": "A Raku interface to the Velleman USB Experiment Kit",
"source-url": "git://github.com/jonathanstowe/Device-Velleman-K8055.git",
"support": {
"source": "git://github.com/jonathanstowe/Device-Velleman-K8055.git"
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

![Build Status](https://github.com/jonathanstowe/Device-Velleman-K8055/workflows/CI/badge.svg)

A perl interface to the [Velleman USB Experiment Kit](http://www.velleman.eu/products/view/?lang=en&id=351346).
A Raku interface to the [Velleman USB Experiment Kit](http://www.velleman.eu/products/view/?lang=en&id=351346).

## Synopsis

```perl6
```raku
use Device::Velleman::K8055;

my $device = Device::Velleman::K8055.new(address => 0);
Expand Down Expand Up @@ -86,8 +86,7 @@ If the above steps haven't been done before trying to install
the module, it will attempt to skip most of the tests and
may even succeed in installing but may not work well.

If you have a working rakudo Perl 6 installation you should
be able to install with ```zef``` :
If you have a working Rakudo installation you should be able to install with ```zef``` :

zef install Device::Velleman::K8055

Expand Down
4 changes: 2 additions & 2 deletions examples/siney
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl6
#!raku

use Device::Velleman::K8055;

Expand Down Expand Up @@ -37,4 +37,4 @@ sub MAIN(Int :$address where 0 <= * < 4 = 0, Int :$samplerate = 44100, Int :$fre

}

# vim: expandtab shiftwidth=4 ft=perl6
# vim: expandtab shiftwidth=4 ft=raku
4 changes: 2 additions & 2 deletions examples/synopsis
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl6
#!/usr/bin/env raku

use Device::Velleman::K8055;

Expand All @@ -19,4 +19,4 @@ react {
}
}

# vim: expandtab shiftwidth=4 ft=perl6
# vim: expandtab shiftwidth=4 ft=raku
2 changes: 1 addition & 1 deletion lib/Device/Velleman/K8055.pm
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,4 @@ class Device::Velleman::K8055 {

}

# vim: expandtab shiftwidth=4 ft=perl6
# vim: expandtab shiftwidth=4 ft=raku
4 changes: 2 additions & 2 deletions t/001-meta.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl6
#!raku

use v6;

Expand Down Expand Up @@ -36,4 +36,4 @@ else {


done-testing;
# vim: expandtab shiftwidth=4 ft=perl6
# vim: expandtab shiftwidth=4 ft=raku
4 changes: 2 additions & 2 deletions t/010-use.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl6
#!raku

use v6;

Expand All @@ -7,4 +7,4 @@ plan 1;

use-ok 'Device::Velleman::K8055', "can use okay";

# vim: expandtab shiftwidth=4 ft=perl6
# vim: expandtab shiftwidth=4 ft=raku
4 changes: 2 additions & 2 deletions t/020-board.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl6
#!raku

use v6;

Expand Down Expand Up @@ -60,4 +60,4 @@ else {


done-testing;
# vim: expandtab shiftwidth=4 ft=perl6
# vim: expandtab shiftwidth=4 ft=raku

0 comments on commit b668f81

Please sign in to comment.