DBomb 0.20 Latest
Kwalitee Issues
- has_meta_yml
-
Add a META.yml to the distribution. Your buildtool should be able to autogenerate it.
- has_human_readable_license
-
Add a section called "LICENSE" to the documentation, or add a file named LICENSE to the distribution.
- has_license_in_source_file
-
Add =head1 LICENSE and the text of the license to the main module in your code.
- prereq_matches_use
-
List all used modules in META.yml requires
Error:
- Carp::Assert
- Class::Data::Inheritable
- Class::MethodMaker
- Tie::IxHash
- Tie::StdArray
- main_module_version_matches_dist_version
-
Make sure that the main module name and version are the same of the distribution.
- has_meta_json
-
Add a META.json to the distribution. Your buildtool should be able to autogenerate it.
- meta_yml_has_license
-
Define the license if you are using in Build.PL. If you are using MakeMaker (Makefile.PL) you should upgrade to ExtUtils::MakeMaker version 6.31.
- has_known_license_in_source_file
-
Add =head1 LICENSE and/or the proper text of the well-known license to the main module in your code.
- no_invalid_versions
-
Fix the version numbers so that version::is_lax($version) returns true.
Error:
- DBomb.pm: HASH(0x5609d4c9fdf0)
- DBomb/Base.pm: HASH(0x5609d4ca9428)
- DBomb/Base/Defs.pm: HASH(0x5609d4ca94b8)
- DBomb/Base/Private.pm: HASH(0x5609d4f7f238)
- DBomb/DBH/Owner.pm: HASH(0x5609d4ca8b70)
- DBomb/Generator.pm: HASH(0x5609d4ca8cd8)
- DBomb/GluedQuery.pm: HASH(0x5609d4edb7c8)
- DBomb/GluedUpdate.pm: HASH(0x5609d4ca8ff0)
- DBomb/Meta/ColumnInfo.pm: HASH(0x5609d4e9cc80)
- DBomb/Meta/HasA.pm: HASH(0x5609d4d95cc8)
- DBomb/Meta/HasMany.pm: HASH(0x5609d4edc050)
- DBomb/Meta/HasQuery.pm: HASH(0x5609d4e31c50)
- DBomb/Meta/Key.pm: HASH(0x5609d4ca9410)
- DBomb/Meta/OneToMany.pm: HASH(0x5609d4c9fe80)
- DBomb/Meta/TableInfo.pm: HASH(0x5609d4c9fef8)
- DBomb/Query.pm: HASH(0x5609d4ca8bb8)
- DBomb/Query/Delete.pm: HASH(0x5609d4ca8de0)
- DBomb/Query/Expr.pm: HASH(0x5609d4c9fe08)
- DBomb/Query/GroupBy.pm: HASH(0x5609d4ca8c60)
- DBomb/Query/Insert.pm: HASH(0x5609d4c9fce8)
- DBomb/Query/Join.pm: HASH(0x5609d4ca8b40)
- DBomb/Query/LeftJoin.pm: HASH(0x5609d4f295c0)
- DBomb/Query/Limit.pm: HASH(0x5609d4ca99f8)
- DBomb/Query/OrderBy.pm: HASH(0x5609d4eab970)
- DBomb/Query/RightJoin.pm: HASH(0x5609d4ca9068)
- DBomb/Query/Text.pm: HASH(0x5609d4ca8c18)
- DBomb/Query/Update.pm: HASH(0x5609d4c9f808)
- DBomb/Test/Objects.pm: HASH(0x5609d4c9f6e8)
- DBomb/Test/Util.pm: HASH(0x5609d4c9f910)
- DBomb/Tie/PrimaryKeyList.pm: HASH(0x5609d4c9f7c0)
- DBomb/Util.pm: HASH(0x5609d4c9f8b0)
- DBomb/Value.pm: HASH(0x5609d4c9fbb0)
- DBomb/Value/Column.pm: HASH(0x5609d4c9faa8)
- DBomb/Value/Key.pm: HASH(0x5609d4c9faf0)
- has_separate_license_file
-
This is not a critical issue. Currently mainly informative for the CPANTS authors. It might be removed later.
- has_security_doc
-
Add SECURITY(.pod|md). See Software::Security::Policy.
- security_doc_contains_contact
-
Add SECURITY(.pod|md) and add a contact address. See Software::Security::Policy.
- has_contributing_doc
-
Add CONTRIBUTING(.pod|md). See https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors.
Modules
| Name | Abstract | Version | View |
|---|---|---|---|
| DBomb | Database Object Mapping | metacpan | |
| DBomb::Base | Provides inheritable methods mapped to database operations. | metacpan | |
| DBomb::Base::Defs | Table definition routines. | metacpan | |
| DBomb::Base::Private | The private API for DBomb::Base | metacpan | |
| DBomb::Conf | metacpan | ||
| DBomb::DBH::Owner | A class that has $dbh data. | metacpan | |
| DBomb::Generator | Provides routines any generator might need. | metacpan | |
| DBomb::GluedQuery | A query that is glued to a DBomb meta object by primary key. | metacpan | |
| DBomb::GluedUpdate | An update glued to a DBomb::Base object. | metacpan | |
| DBomb::Meta::ColumnInfo | Meta data about a column. | metacpan | |
| DBomb::Meta::HasA | One side of a one-to-many relationship. | metacpan | |
| DBomb::Meta::HasMany | One side of a one-to-many relationship. | metacpan | |
| DBomb::Meta::HasQuery | A column based on a Query object. | metacpan | |
| DBomb::Meta::Key | An vector of columns. | metacpan | |
| DBomb::Meta::OneToMany | A One to N relationship. | metacpan | |
| DBomb::Meta::TableInfo | metacpan | ||
| DBomb::Query | A query abstraction. | metacpan | |
| DBomb::Query::Delete | An SQL DELETE wrapper | metacpan | |
| DBomb::Query::Expr | Abstraction of a WHERE or ON clause. | metacpan | |
| DBomb::Query::GroupBy | An ORDER BY clause. | metacpan | |
| DBomb::Query::Insert | An SQL INSERT wrapper. | metacpan | |
| DBomb::Query::Join | Abstract a join between two DBomb sources. | metacpan | |
| DBomb::Query::LeftJoin | Abstracts a LEFT OUTER JOIN | metacpan | |
| DBomb::Query::Limit | A LIMIT clause. | metacpan | |
| DBomb::Query::OrderBy | An ORDER BY clause. | metacpan | |
| DBomb::Query::RightJoin | Abstracts a RIGHT OUTER JOIN | metacpan | |
| DBomb::Query::Text | Just a wrapper around plain sql. | metacpan | |
| DBomb::Query::Update | An SQL UPDATE wrapper | metacpan | |
| DBomb::Test::Objects | This is an umbrella package for all the DBomb::Test objects. | metacpan | |
| DBomb::Test::Util | THIS PACKAGE SHOULD NOT BE INSTALLED. | metacpan | |
| DBomb::Tie::PrimaryKeyList | A list of primary keys that auto creates objects when fetched. | metacpan | |
| DBomb::Util | Miscellany with no place else to go. | metacpan | |
| DBomb::Value | Abstract class for column and key values. | metacpan | |
| DBomb::Value::Column | The value in a single colummn. | metacpan | |
| DBomb::Value::Key | The values for a DBomb::Meta::Key. | metacpan | |
| DBomb::Version | The DBomb Release Version | 0.20 | metacpan |