ruby-ast 2.4.0-1 source package in Ubuntu

Changelog

ruby-ast (2.4.0-1) unstable; urgency=medium

  * Team upload.

  [ Utkarsh Gupta ]
  * Add salsa-ci.yml

  [ Debian Janitor ]
  * Use secure copyright file specification URI.
  * Bump debhelper from old 10 to 12.

  [ Balasankar C ]
  * New upstream release.
  * Declare Rules-Requires-Root
  * Drop dependencies on ruby | ruby-interpreter

 -- Balasankar C <email address hidden>  Thu, 06 Feb 2020 20:45:51 +0530

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-ast_2.4.0-1.dsc 2.0 KiB da5ce478ca04cf9451b297a5dbbf6464b325af51a42071d39872fe27c1783fca
ruby-ast_2.4.0.orig.tar.gz 10.8 KiB b40f628eca9d8d3d3d1aabba05922f96694b9e43fcd061e3e3975f338dc668d6
ruby-ast_2.4.0-1.debian.tar.xz 2.7 KiB 9a9ec89efa4f0a24d3f68e47977e3a55fff8db1b9111546a0cda879f84c2e380

Available diffs

No changes file available.

Binary packages built by this source

ruby-ast: Ruby library for working with abstract syntax trees

 ast embraces immutability; each AST node is inherently frozen at
 creation, and updating a child node requires recreating that node
 and its every parent, recursively.
 .
 This is a design choice. It does create some pressure on
 garbage collector, but completely eliminates all concurrency
 and aliasing problems.
 .
 See also AST::Node, AST::Processor::Mixin and AST::Sexp classes for
 additional recommendations and design patterns.