Skip to content

Commit 5d49548

Browse files
committed
A few POD fixes and 0.11 release.
1 parent 1d57a2b commit 5d49548

File tree

4 files changed

+11
-42
lines changed

4 files changed

+11
-42
lines changed

README.creole

Lines changed: 0 additions & 32 deletions
This file was deleted.

README.pod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Net::Stripe - API client for Stripe.com
66

77
=head1 VERSION
88

9-
version 0.10
9+
version 0.11
1010

1111
=head1 SYNOPSIS
1212

@@ -41,6 +41,8 @@ This method returns Moose objects for responses from the API.
4141

4242
This creates a new stripe api object. The following parameters are accepted:
4343

44+
=over
45+
4446
=item api_key
4547

4648
This is required. You get this from your Stripe Account settings.
@@ -53,6 +55,8 @@ You can set this to true to see extra debug info.
5355

5456
You can set this to true to see the actual network requests.
5557

58+
=back
59+
5660
=head1 Charge Methods
5761

5862
=head2 post_charge( PARAMHASH | OBJECT )
@@ -141,10 +145,6 @@ You can set this to true to see the actual network requests.
141145

142146
=head2 get_invoiceitems( PARAMHASH )
143147

144-
=head1 METHODS
145-
146-
=head2 API Object
147-
148148
=head1 SEE ALSO
149149

150150
L<https://stripe.com>, L<https://stripe.com/docs/api>

dist.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ copyright_year = 2011
1010
repo = lukec/stripe-perl
1111
[ChangelogFromGit]
1212
[Git::NextVersion]
13-
first_version = 0.10
13+
first_version = 0.11
1414
[ContributorsFromGit]
1515
[PodWeaver]
1616

17+
1718
[ReadmeAnyFromPod / pod.root ]
1819
filename = README.pod
1920
type = pod

lib/Net/Stripe.pm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,12 @@ generally named after the HTTP method and the object name.
5151
5252
This method returns Moose objects for responses from the API.
5353
54-
=head1 METHODS
55-
56-
=head2 API Object
57-
5854
=method new PARAMHASH
5955
6056
This creates a new stripe api object. The following parameters are accepted:
6157
58+
=over
59+
6260
=item api_key
6361
6462
This is required. You get this from your Stripe Account settings.
@@ -71,6 +69,8 @@ You can set this to true to see extra debug info.
7169
7270
You can set this to true to see the actual network requests.
7371
72+
=back
73+
7474
=cut
7575

7676
has 'debug' => (is => 'rw', isa => 'Bool', default => 0);

0 commit comments

Comments
 (0)