ruby-ast 2.4.1-1 source package in Ubuntu

Changelog

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

  * Team upload

  [ Abraham Raji ]
  * New upstream version 2.4.1
  * Updated d/watch to pull g/h tarball

  [ Utkarsh Gupta ]
  * Add myself as an uploader

 -- Abraham Raji <email address hidden>  Mon, 29 Jun 2020 18:15:38 +0000

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
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-ast_2.4.1-1.dsc 2.0 KiB 94bfe4102981e9a9562b59477ad84999ef1b30e10ec73a47602368f757438766
ruby-ast_2.4.1.orig.tar.gz 11.0 KiB 84fc03844d80bebbdb932ea903e043ab8e2985a6bffebc81c5b32ac15fa13646
ruby-ast_2.4.1-1.debian.tar.xz 2.8 KiB 1e02bb80af8f48da60f1a78bb1394606c81fd403ae4e579b095f8eb1c0bf26a1

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.