Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created January 6, 2017 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoffixznet/ccdd17f79272af98ad863ac06be8afbe to your computer and use it in GitHub Desktop.
Save zoffixznet/ccdd17f79272af98ad863ac06be8afbe to your computer and use it in GitHub Desktop.
$ cat v1/META6.json
{
"perl" : "6.c",
"name" : "Foo",
"version" : "1",
"description" : "Extendable Internet Relay Chat client",
"depends" : [
],
"test-depends" : [
],
"provides" : {
"Foo" : "Foo.pm6"
},
"authors" : ["Zoffix Znet"],
"support" : {"source" : "git://github.com/zoffixznet/perl6-IRC-Client.git"}
}
$ cat v1/Foo.pm6
unit module Foo:ver<1>;
our sub foo {
say "ones";
}
$ cat v2/META6.json
{
"perl" : "6.c",
"name" : "Foo",
"version" : "2",
"description" : "Extendable Internet Relay Chat client",
"depends" : [
],
"test-depends" : [
],
"provides" : {
"Foo" : "Foo.pm6"
},
"authors" : ["Zoffix Znet"],
"support" : {"source" : "git://github.com/zoffixznet/perl6-IRC-Client.git"}
}
$ cat v1/Foo.pm6
unit module Foo:ver<1>;
our sub foo {
say "ones";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment