Skip to content

Commit

Permalink
CPAN developer release 0.12_01
Browse files Browse the repository at this point in the history
  • Loading branch information
hma committed Dec 23, 2010
1 parent 78f7f22 commit b2f5f63
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Changes
@@ -1,12 +1,12 @@
Revision history for Perl extension WebService-Google-Language

0.12_01 Dec 21, 2010
0.12_01 Dec 23, 2010

- Switch GitHub URL to https
- Explicitly require Test::More 0.62 in tests
- Accessor for referer string
- More test coverage
- FIX: URL maximum length for GET is 2073 (+1 octet)
- Accessor for referer string
- Full test coverage for everything but Perl 5.6
- Explicitly require Test::More 0.62 in tests
- Switch GitHub URL to https

0.12 Oct 10, 2010

Expand Down
6 changes: 3 additions & 3 deletions MANIFEST
Expand Up @@ -8,9 +8,9 @@ t/00-load.t
t/01-constructor.t
t/02-accessors.t
t/03-constructor-revisited.t
t/04-methods.t
t/05-mock.t
t/06-result.t
t/04-result.t
t/05-methods.t
t/06-mock.t
xt/cpan-meta.t
xt/hasversion.t
xt/minimumversion.t
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Expand Up @@ -7,6 +7,7 @@
^Debian_CPANTS\.txt$
^Makefile$
^MANIFEST\.SKIP$
^MYMETA\.yml$
^nytprof
^pm_to_blib$
^tmp/
Expand Down
3 changes: 2 additions & 1 deletion README
Expand Up @@ -48,9 +48,10 @@ DEPENDENCIES

This module requires these other modules:

HTTP::Response (required by "make test")
JSON 2.0+
LWP::UserAgent
Test::More 0.62+ (required by "make test")
Test::More 0.62+ ("make test")
URI


Expand Down
2 changes: 1 addition & 1 deletion t/02-accessors.t
Expand Up @@ -20,7 +20,7 @@ my %accessors = (

plan tests => (9 * keys %accessors) + 1;

my $service = WebService::Google::Language->new( referer => REFERER );
my $service = WebService::Google::Language->new(REFERER);

for my $accessor (sort keys %accessors) {
can_ok $service, $accessor;
Expand Down
2 changes: 1 addition & 1 deletion t/05-methods.t
Expand Up @@ -11,7 +11,7 @@ use constant NO_INTERNET => q{Can't reach Google (no internet access?)};
use constant REFERER => 'http://search.cpan.org/dist/WebService-Google-Language/';
use constant WHITESPACE => " \n \t ";

my $service = WebService::Google::Language->new( referer => REFERER );
my $service = WebService::Google::Language->new(REFERER);



Expand Down

0 comments on commit b2f5f63

Please sign in to comment.