Skip to content

Commit

Permalink
Add type on attribute to prepare update feature
Browse files Browse the repository at this point in the history
- Add following methods for attribute handling
    attributes()
    attribute_is()
- Add the dump() method
- Add the class() method
- Remove query_filter(), filering is to be done through the
    new class() method
- Now accept Iterator as argument of Net::Whois::Object->new()
- More tests
- Complete the documentation, with some examples
  • Loading branch information
arhuman committed Jul 4, 2012
1 parent f1f7580 commit fcd9e80
Show file tree
Hide file tree
Showing 55 changed files with 2,287 additions and 1,053 deletions.
14 changes: 14 additions & 0 deletions Changes
@@ -1,5 +1,19 @@
Revision history for net-whois-ripe


- Add type on attributes to prepare future update, with the
following methods :
attributes()
attribute_is()
- Add the dump() method
- Add the class() method
- Remove query_filter(), filering is to be done through the
class() method
- Now accept Iterator as argument of Net::Whois::Object->new()
- More tests
- Complete the documentation, with some examples


2.00012 05 Jun 2012
Fix previous broken release (merge goof)
Fix some tests
Expand Down
22 changes: 15 additions & 7 deletions META.json
Expand Up @@ -4,7 +4,7 @@
"Luis Motta Campos <lmc@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150",
"generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.120921",
"license" : [
"unknown"
],
Expand All @@ -22,23 +22,31 @@
"prereqs" : {
"build" : {
"requires" : {
"Test::Exception" : 0
"Test::Exception" : "0"
}
},
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : 0
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"Iterator" : 0,
"Iterator::Util" : 0,
"Test::More" : 0,
"Iterator" : "0",
"Iterator::Util" : "0",
"Test::More" : "0",
"perl" : "5.006"
}
}
},
"release_status" : "stable",
"version" : "2.00009"
"resources" : {
"bugtracker" : {
"web" : "https://github.com/arhuman/Net-Whois-RIPE/issues"
},
"repository" : {
"url" : "https://github.com/arhuman/Net-Whois-RIPE"
}
},
"version" : "2.00013"
}
7 changes: 5 additions & 2 deletions META.yml
Expand Up @@ -7,7 +7,7 @@ build_requires:
configure_requires:
ExtUtils::MakeMaker: 0
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.59, CPAN::Meta::Converter version 2.112150'
generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.120921'
license: unknown
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -22,4 +22,7 @@ requires:
Iterator::Util: 0
Test::More: 0
perl: 5.006
version: 2.00_010
resources:
bugtracker: https://github.com/arhuman/Net-Whois-RIPE/issues
repository: https://github.com/arhuman/Net-Whois-RIPE
version: 2.00013

0 comments on commit fcd9e80

Please sign in to comment.