File: control

package info (click to toggle)
ruby-bullet 7.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 836 kB
  • sloc: ruby: 6,133; javascript: 57; sh: 27; makefile: 4
file content (35 lines) | stat: -rw-r--r-- 1,396 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
Source: ruby-bullet
Section: ruby
Priority: optional
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Cocoa <cocoa1231@disroot.org>
Build-Depends: debhelper-compat (= 13),
               gem2deb (>= 1),
               rake,
               ruby-activerecord,
               ruby-activesupport,
               ruby-rspec,
               ruby-sqlite3,
               ruby-uniform-notifier (>= 1.11)
Standards-Version: 4.7.0
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-bullet.git
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-bullet
Homepage: https://github.com/flyerhzm/bullet
Testsuite: autopkgtest-pkg-ruby
Rules-Requires-Root: no

Package: ruby-bullet
Architecture: all
Depends: ${misc:Depends},
         ${ruby:Depends},
         ${shlibs:Depends}
Description: ActiveRecord helper for detecting performance  issues
 The Bullet gem is designed to help you increase your application's performance
 by reducing the number of queries it makes. It will watch your queries while
 you develop your application and notify you when you should add eager loading
 (N+1 queries), when you're using eager loading that isn't necessary and when
 you should use counter cache.
 .
 Best practice is to use Bullet in development mode or custom mode
 (staging, profile, etc.). The last thing you want is your clients getting
 alerts about how lazy you are.