line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
##---------------------------------------------------------------------------- |
2
|
|
|
|
|
|
|
## Meta CPAN API - ~/lib/Net/API/CPAN/Release/Suggest.pm |
3
|
|
|
|
|
|
|
## Version v0.1.0 |
4
|
|
|
|
|
|
|
## Copyright(c) 2023 DEGUEST Pte. Ltd. |
5
|
|
|
|
|
|
|
## Author: Jacques Deguest <jack@deguest.jp> |
6
|
|
|
|
|
|
|
## Created 2023/07/25 |
7
|
|
|
|
|
|
|
## Modified 2023/09/25 |
8
|
|
|
|
|
|
|
## All rights reserved |
9
|
|
|
|
|
|
|
## |
10
|
|
|
|
|
|
|
## |
11
|
|
|
|
|
|
|
## This program is free software; you can redistribute it and/or modify it |
12
|
|
|
|
|
|
|
## under the same terms as Perl itself. |
13
|
|
|
|
|
|
|
##---------------------------------------------------------------------------- |
14
|
|
|
|
|
|
|
# This module file has been automatically generated. Any change made here will be lost. |
15
|
|
|
|
|
|
|
# Edit the script in ./build/build_modules.pl instead |
16
|
|
|
|
|
|
|
package Net::API::CPAN::Release::Suggest; |
17
|
|
|
|
|
|
|
BEGIN |
18
|
|
|
|
|
|
|
{ |
19
|
2
|
|
|
2
|
|
229046
|
use strict; |
|
2
|
|
|
|
|
12
|
|
|
2
|
|
|
|
|
56
|
|
20
|
2
|
|
|
2
|
|
14
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
50
|
|
21
|
2
|
|
|
2
|
|
10
|
use parent qw( Net::API::CPAN::Generic ); |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
10
|
|
22
|
2
|
|
|
2
|
|
98
|
use vars qw( $VERSION ); |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
75
|
|
23
|
2
|
|
|
2
|
|
31
|
our $VERSION = 'v0.1.0'; |
24
|
|
|
|
|
|
|
}; |
25
|
|
|
|
|
|
|
|
26
|
2
|
|
|
2
|
|
8
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
31
|
|
27
|
2
|
|
|
2
|
|
7
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
568
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
sub init |
30
|
|
|
|
|
|
|
{ |
31
|
1
|
|
|
1
|
1
|
9462
|
my $self = shift( @_ ); |
32
|
1
|
50
|
|
|
|
75
|
$self->{author} = undef unless( CORE::exists( $self->{author} ) ); |
33
|
1
|
50
|
|
|
|
5
|
$self->{date} = undef unless( CORE::exists( $self->{date} ) ); |
34
|
1
|
50
|
|
|
|
4
|
$self->{deprecated} = undef unless( CORE::exists( $self->{deprecated} ) ); |
35
|
1
|
50
|
|
|
|
3
|
$self->{distribution} = undef unless( CORE::exists( $self->{distribution} ) ); |
36
|
1
|
50
|
|
|
|
3
|
$self->{name} = undef unless( CORE::exists( $self->{name} ) ); |
37
|
1
|
|
|
|
|
3
|
$self->{object} = 'suggest'; |
38
|
1
|
50
|
|
|
|
3
|
$self->{release} = undef unless( CORE::exists( $self->{release} ) ); |
39
|
1
|
|
|
|
|
3
|
$self->{_init_strict_use_sub} = 1; |
40
|
1
|
|
|
|
|
3
|
$self->{_exception_class} = 'Net::API::CPAN::Exception'; |
41
|
1
|
50
|
|
|
|
11
|
$self->SUPER::init( @_ ) || return( $self->pass_error ); |
42
|
1
|
|
|
|
|
6
|
$self->{fields} = [qw( author date deprecated distribution name release )]; |
43
|
1
|
|
|
|
|
3
|
return( $self ); |
44
|
|
|
|
|
|
|
} |
45
|
|
|
|
|
|
|
|
46
|
2
|
|
|
2
|
1
|
5452
|
sub author { return( shift->_set_get_scalar_as_object( 'author', @_ ) ); } |
47
|
|
|
|
|
|
|
|
48
|
2
|
|
|
2
|
1
|
2593
|
sub date { return( shift->_set_get_datetime( 'date', @_ ) ); } |
49
|
|
|
|
|
|
|
|
50
|
2
|
|
|
2
|
1
|
3272
|
sub deprecated { return( shift->_set_get_boolean( 'deprecated', @_ ) ); } |
51
|
|
|
|
|
|
|
|
52
|
2
|
|
|
2
|
1
|
2502
|
sub distribution { return( shift->_set_get_scalar_as_object( 'distribution', @_ ) ); } |
53
|
|
|
|
|
|
|
|
54
|
2
|
|
|
2
|
1
|
52727
|
sub name { return( shift->_set_get_scalar_as_object( 'name', @_ ) ); } |
55
|
|
|
|
|
|
|
|
56
|
0
|
|
|
0
|
1
|
0
|
sub object { return( shift->_set_get_scalar_as_object( 'object', @_ ) ); } |
57
|
|
|
|
|
|
|
|
58
|
2
|
|
|
2
|
1
|
2643497
|
sub release { return( shift->_set_get_scalar_as_object( 'release', @_ ) ); } |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
1; |
61
|
|
|
|
|
|
|
# NOTE: POD |
62
|
|
|
|
|
|
|
__END__ |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=encoding utf-8 |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 NAME |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Net::API::CPAN::Release::Suggest - Meta CPAN API Release::Suggest Class |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head1 SYNOPSIS |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
use Net::API::CPAN::Release::Suggest; |
73
|
|
|
|
|
|
|
my $obj = Net::API::CPAN::Release::Suggest->new( { |
74
|
|
|
|
|
|
|
author => "MOMOTARO", |
75
|
|
|
|
|
|
|
date => "2023-09-01T10:12:42", |
76
|
|
|
|
|
|
|
deprecated => \0, |
77
|
|
|
|
|
|
|
distribution => "Japan-Folklore", |
78
|
|
|
|
|
|
|
name => "Japan::Folklore", |
79
|
|
|
|
|
|
|
release => "Japan-Folklore-v1.2.3", |
80
|
|
|
|
|
|
|
} ) || die( Net::API::CPAN::Release::Suggest->error ); |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
my $string = $obj->author; |
83
|
|
|
|
|
|
|
my $date = $obj->date; |
84
|
|
|
|
|
|
|
my $bool = $obj->deprecated; |
85
|
|
|
|
|
|
|
my $string = $obj->distribution; |
86
|
|
|
|
|
|
|
my $string = $obj->name; |
87
|
|
|
|
|
|
|
my $str = $obj->object; |
88
|
|
|
|
|
|
|
my $string = $obj->release; |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 VERSION |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
v0.1.0 |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=head1 DESCRIPTION |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
This class serves to retrieve and manipulate suggests. |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
It inherits from L<Net::API::CPAN::Generic> |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=head1 CONSTRUCTOR |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=head2 new |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
Provided with an hash or hash reference of parameters, and this instantiates a new C<Net::API::CPAN::Release::Suggest> object. |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
The parameters that can be provided bear the same name and supports the same values as the methods below. |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=head1 METHODS |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=head2 author |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
$obj->author( "MOMOTARO" ); |
113
|
|
|
|
|
|
|
my $string = $obj->author; |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
Sets or gets a string and returns a L<scalar object|Module::Generic::Scalar>, even if there is no value. |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
=head2 date |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
$obj->date( "2023-09-01T10:12:42" ); |
120
|
|
|
|
|
|
|
my $datetime_obj = $obj->date; |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
Sets or gets a datetime value, and returns a L<DateTime object|DateTime> that stringifies to the format that was provided with the string set (usally an ISO 8601 datetime format) or C<undef> if no value is set. |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
=head2 deprecated |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
$obj->deprecated(1); |
127
|
|
|
|
|
|
|
my $bool = $obj->deprecated; |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
Sets or gets a boolean value, and returns a L<boolean object|Module::Generic::Boolean> or C<undef> if no value is set. |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
=head2 distribution |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
$obj->distribution( "Japan-Folklore" ); |
134
|
|
|
|
|
|
|
my $string = $obj->distribution; |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
Sets or gets a string and returns a L<scalar object|Module::Generic::Scalar>, even if there is no value. |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
=head2 name |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
$obj->name( "Japan::Folklore" ); |
141
|
|
|
|
|
|
|
my $string = $obj->name; |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
Sets or gets a string and returns a L<scalar object|Module::Generic::Scalar>, even if there is no value. |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
=head2 object |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
Returns the object type for this class, which is C<suggest> |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
=head2 release |
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
$obj->release( "Japan-Folklore-v1.2.3" ); |
152
|
|
|
|
|
|
|
my $string = $obj->release; |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
Sets or gets a string and returns a L<scalar object|Module::Generic::Scalar>, even if there is no value. |
155
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
=head1 API SAMPLE |
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
{ |
159
|
|
|
|
|
|
|
"author" : "MOMOTARO", |
160
|
|
|
|
|
|
|
"name" : "Japan::Folklore", |
161
|
|
|
|
|
|
|
"deprecated" : false, |
162
|
|
|
|
|
|
|
"distribution" : "Japan-Folklore", |
163
|
|
|
|
|
|
|
"date" : "2023-09-01T10:12:42", |
164
|
|
|
|
|
|
|
"release" : "Japan-Folklore-v1.2.3" |
165
|
|
|
|
|
|
|
} |
166
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
=head1 AUTHOR |
168
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
Jacques Deguest E<lt>F<jack@deguest.jp>E<gt> |
170
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
=head1 SEE ALSO |
172
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
L<Net::API::CPAN>, L<Net::API::CPAN::Activity>, L<Net::API::CPAN::Author>, L<Net::API::CPAN::Changes>, L<Net::API::CPAN::Changes::Release>, L<Net::API::CPAN::Contributor>, L<Net::API::CPAN::Cover>, L<Net::API::CPAN::Diff>, L<Net::API::CPAN::Distribution>, L<Net::API::CPAN::DownloadUrl>, L<Net::API::CPAN::Favorite>, L<Net::API::CPAN::File>, L<Net::API::CPAN::Module>, L<Net::API::CPAN::Package>, L<Net::API::CPAN::Permission>, L<Net::API::CPAN::Rating>, L<Net::API::CPAN::Release> |
174
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
L<MetaCPAN::API>, L<MetaCPAN::Client> |
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
L<https://github.com/metacpan/metacpan-api/blob/master/docs/API-docs.md> |
178
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
Copyright(c) 2023 DEGUEST Pte. Ltd. |
182
|
|
|
|
|
|
|
|
183
|
|
|
|
|
|
|
All rights reserved |
184
|
|
|
|
|
|
|
|
185
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
=cut |
188
|
|
|
|
|
|
|
|