Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Commit

Permalink
CPAN Release 0.061
Browse files Browse the repository at this point in the history
  • Loading branch information
mithun committed Mar 19, 2012
1 parent daf8c37 commit 8994cf2
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 12 deletions.
6 changes: 5 additions & 1 deletion Changes
Expand Up @@ -2,7 +2,11 @@ Version History for URI-Encode
Mithun Ayachit


* * * * *
0.061
=====

- POD updates
- Added a benchmark script

0.06
====
Expand Down
16 changes: 11 additions & 5 deletions META.json
Expand Up @@ -4,7 +4,13 @@
"Mithun Ayachit <mithun@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.38, CPAN::Meta::Converter version 2.112621",
"generated_by" : "Module::Build version 0.4, CPAN::Meta::Converter version 2.120630",
"keywords" : [
"uri",
"escape",
"encode",
"percent"
],
"license" : [
"perl_5"
],
Expand All @@ -16,8 +22,8 @@
"prereqs" : {
"build" : {
"requires" : {
"Test::More" : 0,
"version" : 0
"Test::More" : "0",
"version" : "0"
}
},
"configure" : {
Expand All @@ -35,7 +41,7 @@
"provides" : {
"URI::Encode" : {
"file" : "lib/URI/Encode.pm",
"version" : "0.06"
"version" : "0.061"
}
},
"release_status" : "stable",
Expand All @@ -51,5 +57,5 @@
"url" : "git://github.com/mithun/perl-uri-encode.git"
}
},
"version" : "0.06"
"version" : "0.061"
}
11 changes: 8 additions & 3 deletions META.yml
Expand Up @@ -8,7 +8,12 @@ build_requires:
configure_requires:
Module::Build: 0.38
dynamic_config: 1
generated_by: 'Module::Build version 0.38, CPAN::Meta::Converter version 2.112621'
generated_by: 'Module::Build version 0.4, CPAN::Meta::Converter version 2.120630'
keywords:
- uri
- escape
- encode
- percent
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -17,7 +22,7 @@ name: URI-Encode
provides:
URI::Encode:
file: lib/URI/Encode.pm
version: 0.06
version: 0.061
requires:
Encode: 2.12
perl: v5.8.1
Expand All @@ -26,4 +31,4 @@ resources:
homepage: https://github.com/mithun/perl-uri-encode
license: http://dev.perl.org/licenses/
repository: git://github.com/mithun/perl-uri-encode.git
version: 0.06
version: 0.061
2 changes: 1 addition & 1 deletion Makefile.PL
@@ -1,4 +1,4 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.3800
# Note: this file was auto-generated by Module::Build::Compat version 0.40
require 5.008001;
use ExtUtils::MakeMaker;
WriteMakefile
Expand Down
5 changes: 5 additions & 0 deletions README
Expand Up @@ -28,9 +28,14 @@ into a plain text emails, and that those links are 'click-able' by the
person reading that email. This can be accomplished by NOT encoding the
reserved characters.

This module can also be useful when using HTTP::Tiny to ensure the URLs
are properly escaped.

If you are looking for speed and want to encode reserved characters, use
URI::Escape::XS

See this script for a comparison on encoding results and performance.

METHODS
=======

Expand Down
7 changes: 5 additions & 2 deletions lib/URI/Encode.pm
Expand Up @@ -155,12 +155,15 @@ to encode strings (mainly URLs) into a format which can be pasted into a plain
text emails, and that those links are 'click-able' by the person reading that
email. This can be accomplished by NOT encoding the reserved characters.
This module can also be useful when using L<HTTP::Tiny> to ensure the URLs are properly escaped.
This module can also be useful when using L<HTTP::Tiny> to ensure the URLs are
properly escaped.
If you are looking for speed and want to encode reserved characters, use
L<URI::Escape::XS>
See L<this script|https://github.com/mithun/perl-uri-encode/raw/master/.author/benchmark.pl> for a comparison on encoding results and performance.
See L<this
script|https://github.com/mithun/perl-uri-encode/raw/master/.author/benchmark.pl>
for a comparison on encoding results and performance.
=head1 METHODS
Expand Down
4 changes: 4 additions & 0 deletions readme.mkdn
Expand Up @@ -24,9 +24,13 @@ to encode strings (mainly URLs) into a format which can be pasted into a plain
text emails, and that those links are 'click-able' by the person reading that
email. This can be accomplished by NOT encoding the reserved characters.

This module can also be useful when using [HTTP::Tiny](http://search.cpan.org/perldoc?HTTP::Tiny) to ensure the URLs are properly escaped.

If you are looking for speed and want to encode reserved characters, use
[URI::Escape::XS](http://search.cpan.org/perldoc?URI::Escape::XS)

See [this script](https://github.com/mithun/perl-uri-encode/raw/master/.author/benchmark.pl) for a comparison on encoding results and performance.

# METHODS

## new()
Expand Down

0 comments on commit 8994cf2

Please sign in to comment.