File: control

package info (click to toggle)
ruby-rails-observers 0.1.1-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 272 kB
  • sloc: ruby: 1,522; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,417 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
30
31
32
33
34
Source: ruby-rails-observers
Section: ruby
Priority: optional
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Ondřej Surý <ondrej@debian.org>
DM-Upload-Allowed: yes
Build-Depends: debhelper (>= 7.0.50~),
	       gem2deb (>= 0.3.0~)
Standards-Version: 3.9.4
Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-rails-observers.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-rails-observers.git;a=summary
Homepage: https://github.com/rails/rails-observers
XS-Ruby-Versions: all

Package: ruby-rails-observers
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ${shlibs:Depends},
	 ${misc:Depends},
	 ruby | ruby-interpreter
Description: toolkit to build Rails observers (part of Rails)
 This package contains two observers: Active Record Observer and
 Action Controller Sweeper.
 .
 Active Record Observer classes respond to life cycle callbacks to
 implement trigger-like behavior outside the original class. This is a
 great way to reduce the clutter that normally comes when the model
 class is burdened with functionality that doesn't pertain to the core
 responsibility of the class.
 .
 Active Record Sweepers are the terminators of the caching world and
 responsible for expiring caches when model objects change. They do
 this by being half-observers, half-filters and implementing callbacks
 for both roles.