File: control

package info (click to toggle)
ruby-valid 1.0.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 124 kB
  • sloc: ruby: 309; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,234 bytes parent folder | download | duplicates (2)
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
Source: ruby-valid
Section: ruby
Priority: optional
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Pirate Praveen <praveen@debian.org>
Build-Depends: debhelper (>= 9~),
               gem2deb
Standards-Version: 3.9.6
Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-valid.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-valid.git
Homepage: https://github.com/zombor/Validator
Testsuite: autopkgtest-pkg-ruby
XS-Ruby-Versions: all

Package: ruby-valid
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ruby | ruby-interpreter,
         ${misc:Depends},
         ${shlibs:Depends}
Description: standalone, generic object validator for ruby
 Validator is a simple ruby validation class. You don't use it directly inside
 your classes like just about every other ruby validation class out there. This
 is implemented in this way so you don't automatically pollute the
 namespace of the objects you want to validate.
 .
 This also solves the problem of validating forms very nicely. Frequently you
 will have a form that represents many different data objects in your system,
 and you can pre-validate everything before doing any saving.