File: control

package info (click to toggle)
ruby-whitequark-parser 3.1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,564 kB
  • sloc: yacc: 34,908; ruby: 19,846; makefile: 12; sh: 8
file content (47 lines) | stat: -rw-r--r-- 1,900 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
36
37
38
39
40
41
42
43
44
45
46
47
Source: ruby-whitequark-parser
Section: ruby
Priority: optional
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Miguel Landaeta <nomadium@debian.org>,
           Utkarsh Gupta <utkarsh@debian.org>
Build-Depends: debhelper-compat (= 13),
               gem2deb,
               racc,
               ragel,
               rake,
               ruby-ast (>= 2.4.1),
               ruby-cliver,
               ruby-simplecov
Standards-Version: 4.6.1
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-whitequark-parser.git
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-whitequark-parser
Homepage: https://github.com/whitequark/parser
Testsuite: autopkgtest-pkg-ruby
XS-Ruby-Versions: all
Rules-Requires-Root: no

Package: ruby-whitequark-parser
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ${misc:Depends},
         ${ruby:Depends},
         ${shlibs:Depends}
Breaks: rubocop (<< 0.89.1+dfsg-2~),
        ruby-rubocop-ast (<< 0.5.0)
Description: Ruby parser written in pure Ruby
 parser is a production-ready Ruby parser written in pure Ruby. It
 recognizes as much or more code than Ripper, Melbourne, JRubyParser
 or ruby_parser, and is vastly more convenient to use.
 .
 Among its keys features are: it provides precise source location reporting, it
 has a documented AST format which is convenient to work with, it parses  1.8,
 1.9, 2.x, and 3.x syntax with backwards-compatible AST formats, and also parses
 MacRuby and RubyMotion syntax extensions. It also has improved clang-like
 diagnostic messages with location information.
 .
 It is written in pure Ruby, runs on MRI >= 2.0.0, JRuby and Rubinius, and
 historically, all versions of Ruby since 1.8. It has excellent test coverage
 and the source code is readable and well commented.
 .
 Not to be confused with ruby_parser gem from Ryan Davis, of seattle.rb
 Ruby user group.