File: control

package info (click to toggle)
ruby-spy 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 360 kB
  • sloc: ruby: 3,101; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 1,106 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
Source: ruby-spy
Section: ruby
Priority: optional
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Cédric Boutillier <boutil@debian.org>
Build-Depends: debhelper-compat (= 13),
               gem2deb,
               pry,
               rake,
               ruby-minitest-reporters,
               ruby-pry-byebug
Standards-Version: 4.6.0
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-spy.git
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-spy
Homepage: https://github.com/ryanong/spy
Testsuite: autopkgtest-pkg-ruby
XS-Ruby-Versions: all
Rules-Requires-Root: no

Package: ruby-spy
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ${ruby:Depends},
         ${misc:Depends},
         ${shlibs:Depends}
Description: simple modern mocking library using the spy pattern
 Spy is a mocking library that was made for the modern age. It uses
 that uses the spy pattern and checks method's existence and arity:
 Spy by default will raise an error if you attempt to stub a method that
 doesn't exist or call the stubbed method with the wrong arity.