Skip to content

Commit

Permalink
fix conents of rep for rep rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldxs committed Sep 10, 2012
1 parent 8f87bc9 commit abd0d1f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion META.info
@@ -1,5 +1,5 @@
{
"name" : "PP::MIME::Base64",
"name" : "Enc::MIME::Base64",
"version" : "0.01",
"description" : "MIME Base64 encoding for Perl6 that understands Base64 is an encoding for binary data.",
"depends" : [ ],
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,12 +1,12 @@
perl6-MIME-Base64
perl6-Enc-MIME-Base64
=================

MIME Base64 encoding for Perl6 that understands Base64 is an encoding for binary data.

# Synopsis

```perl
use PP::MIME::Base64;
use PP::Enc::MIME::Base64;

my $http_auth_send = encode_base64_str('Aladdin:open sesame');
my $http_auth_recv = decode_base64_str('QWxhZGRpbjpvcGVuIHNlc2FtZQ==');
Expand Down
2 changes: 1 addition & 1 deletion lib/PP/MIME/Base64.pm6 → lib/PP/Enc/MIME/Base64.pm6
@@ -1,4 +1,4 @@
module PP::MIME::Base64:auth<ronaldxs>:ver<0.01> {
module PP::Enc::MIME::Base64:auth<ronaldxs>:ver<0.01> {
our Str constant @mapping =
flat 'A' .. 'Z', 'a' .. 'z', '0' .. '9', '+', '/';

Expand Down
2 changes: 1 addition & 1 deletion t/binary.t
@@ -1,7 +1,7 @@
use v6;

use Test;
use PP::MIME::Base64;
use PP::Enc::MIME::Base64;

plan 8;

Expand Down
2 changes: 1 addition & 1 deletion t/from_snarkyboojum.t
@@ -1,7 +1,7 @@
use v6;

use Test;
use PP::MIME::Base64;
use PP::Enc::MIME::Base64;

plan 18;

Expand Down
2 changes: 1 addition & 1 deletion t/long_line_and_encoding_cases.t
@@ -1,7 +1,7 @@
use v6;

use Test;
use PP::MIME::Base64;
use PP::Enc::MIME::Base64;

plan 7;

Expand Down
2 changes: 1 addition & 1 deletion t/rfc4648_test_vector.t
Expand Up @@ -3,7 +3,7 @@ use v6;
# from http://tools.ietf.org/html/rfc4648#section-10

use Test;
use PP::MIME::Base64;
use PP::Enc::MIME::Base64;

plan 16;

Expand Down

0 comments on commit abd0d1f

Please sign in to comment.