File: control

package info (click to toggle)
ruby-symboltable 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 88 kB
  • sloc: ruby: 143; makefile: 4
file content (31 lines) | stat: -rw-r--r-- 1,135 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
Source: ruby-symboltable
Section: ruby
Priority: optional
Maintainer: Debian OpenStack <team+openstack@tracker.debian.org>
Uploaders:
 Thomas Goirand <zigo@debian.org>,
Build-Depends:
 debhelper-compat (= 11),
 gem2deb,
Standards-Version: 4.1.0
Vcs-Git: https://salsa.debian.org/openstack-team/third-party/ruby-symboltable.git
Vcs-Browser: https://salsa.debian.org/openstack-team/third-party/ruby-symboltable
Homepage: http://mjijackson.github.com/symboltable
XS-Ruby-Versions: all

Package: ruby-symboltable
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends:
 ruby | ruby-interpreter,
 ${misc:Depends},
 ${shlibs:Depends},
Description: symbols-only hash for Ruby
 SymbolTable is a handy little Ruby class that was conceived from the union of
 Hash and Symbol. SymbolTable directly extends Hash, but it stores all keys
 internally as symbols. Any key that cannot be converted to a Symbol is not
 valid.
 .
 While this may seem restrictive, it does have the nice side effect of making
 all keys slightly more memorable and usable. For example, values may be set
 and retrieved using any key that resolves to the same symbol.