diff --git a/Changes b/Changes index 4d5d0ae..817aaa9 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for cppref. +0.06 Tue Oct 13 18:20:00 2009 + - add lib/App/Cppref.pm so that cppref can be installed using CPAN.pm + 0.05 Fri Oct 09 19:55:00 2009 - rewrite constructor and operator filenames (now can be specified like string::string or vector::operator) - accept $ENV{CPPREF_DOCROOT} as document directory diff --git a/cppref b/cppref index 6c64d5f..e0417c7 100755 --- a/cppref +++ b/cppref @@ -7,7 +7,7 @@ use File::Basename; use File::Find (); use File::ShareDir (); -our $VERSION = '0.05'; +our $VERSION = '0.06'; my $BROWSER = $ENV{BROWSER} || 'w3m'; my %BROWSER_OPTION_MAP = ( @@ -101,7 +101,7 @@ cppref - man-style access to cppreference.com documents (using w3m) =head1 AUTHOR -Copyright (c) 2009 Kazuho Oku All rights reserved +Kazuho Oku =head1 LICENSE diff --git a/lib/App/Cppref.pm b/lib/App/Cppref.pm new file mode 100644 index 0000000..1da2999 --- /dev/null +++ b/lib/App/Cppref.pm @@ -0,0 +1,30 @@ +package App::Cppref; + +1; +__END__ + +=head1 NAME + +App::Cppref - man-style access to cppreference.com documents (using w3m) + +=head1 DESCRIPTION + +This is a dummy module so that cppref can be installed using cpan, like: + + # cpan -i App::Cppref + +Please refere to L for how to use the application. + +=head1 AUTHOR + +Kazuho Oku + +=head1 LICENSE + +This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. + +See http://www.perl.com/perl/misc/Artistic.html + +The documents are from http://www.cppreference.com/ (under Creative Commons Attribution 3.0 license). + +=cut