File: control

package info (click to toggle)
libmongodbx-class-perl 1.030002-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 396 kB
  • ctags: 95
  • sloc: perl: 876; makefile: 2
file content (47 lines) | stat: -rw-r--r-- 2,138 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Source: libmongodbx-class-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Dominique Dumont <dod@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: libdatetime-format-w3cdtf-perl,
                     libdatetime-perl,
                     libmodule-pluggable-perl | perl (<< 5.17.0),
                     libmongodb-perl,
                     libmoose-perl,
                     libnamespace-autoclean-perl,
                     libtry-tiny-perl,
                     perl
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libmongodbx-class-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmongodbx-class-perl.git
Homepage: https://metacpan.org/release/MongoDBx-Class

Package: libmongodbx-class-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libdatetime-format-w3cdtf-perl,
         libmodule-pluggable-perl | perl (<< 5.17.0),
         libmongodb-perl,
         libmoose-perl,
         libnamespace-autoclean-perl,
         libtry-tiny-perl
Description: flexible ORM module for MongoDB databases
 MongoDBx::Class Perl module is a flexible object relational mapper
 (ORM) for MongoDB databases. Given a schema-like collection of
 document classes, MongoDBx::Class expands MongoDB objects (hash-refs
 in Perl) from the database into objects of those document classes, and
 collapses such objects back to the database.
 .
 MongoDBx::Class takes advantage of the fact that Perl's MongoDB driver
 is Moose-based to extend and tweak the driver's behavior, instead of
 wrapping it. This means MongoDBx::Class does not define its own
 syntax, so you simply use it exactly as you would the MongoDB driver
 directly. That said, MongoDBx::Class adds some sugar that enhances and
 simplifies the syntax unobtrusively (either use it or don't). Thus, it
 is relatively easy to convert your current MongoDB applications to
 MongoDBx::Class. A collection in MongoDBx::Class
 isa('MongoDB::Collection'), a database in MongoDBx::Class
 isa('MongoDB::Database'), etc.