_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
ruby-citeproc 1.0.10
Propagated dependencies: ruby-namae@1.1.1
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://github.com/inukshuk/citeproc
Licenses: AGPL 3+ FreeBSD
Synopsis: Interface for Ruby citation processors
Description:

CiteProc is a citation processor interface and citation data API based on the CSL specifications. To actually process citations, a dedicated processor engine is required: a pure Ruby engine is available in the citeproc-ruby gem.

ruby-kramdown 2.3.1
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://kramdown.gettalong.org/
Licenses: Expat
Synopsis: Markdown parsing and converting library
Description:

Kramdown is a library for parsing and converting a superset of Markdown. It is completely written in Ruby, supports standard Markdown (with some minor modifications) and various extensions that have been made popular by the PHP Markdown Extra package and Maruku.

ruby-tomparse 0.4.2
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: http://rubyworks.github.com/tomparse/
Licenses: FreeBSD
Synopsis: TomDoc parser for Ruby
Description:

TomParse is a TomDoc parser for Ruby. It takes a code comment as input and parses it into a convenient object-oriented structure in accordance with the TomDoc standard. See TomDoc for more information about the TomDoc format.

ruby-sorcerer 2.0.1
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://github.com/rspec-given/sorcerer
Licenses: Expat
Synopsis: Ripper-style abstract syntax tree to Ruby source generator
Description:

Sorcerer generates Ruby code from a Ripper-like abstract syntax tree (i.e. S-Expressions). Sorcerer is targeted mainly at small snippets of Ruby code, expressible in a single line. Longer examples may be re-sourced, but they will be rendered in a single-line format.

ruby-net-sftp 4.0.0
Propagated dependencies: ruby-net-ssh@7.1.0
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://github.com/net-ssh/net-sftp
Licenses: Expat
Synopsis: Pure Ruby implementation of the SFTP client protocol
Description:

Net::SFTP is a pure Ruby implementation of the SFTP protocol (specifically, versions 1 through 6 of the SFTP protocol). Note that this is the “Secure File Transfer Protocol”, typically run over an SSH connection, and has nothing to do with the FTP protocol.

ruby-morecane 0.2.0
Propagated dependencies: ruby-parallel@1.21.0
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://github.com/yob/morecane
Licenses: Expat
Synopsis: Extra checks for cane
Description:

The cane gem provides a great framework for running quality checks over your ruby project as part of continuous integration build. It comes with a few checks out of the box, but also provides an API for loading custom checks. This gem provides a set of additional checks.

ruby-mustache 1.1.1
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://github.com/mustache/mustache
Licenses: Expat
Synopsis: Framework-agnostic way to render logic-free views
Description:

Mustache is a framework-agnostic way to render logic-free views. Think of Mustache as a replacement for your views. Instead of views consisting of ERB or HAML with random helpers and arbitrary logic, your views are broken into two parts: a Ruby class and an HTML template.

ruby-optimist 3.0.1
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://manageiq.github.io/optimist/
Licenses: Expat
Synopsis: Optimist is a commandline option parser for Ruby that just gets out of your way. One line of code per option is all you need to write. For that, you get a nice automatically-generated help page, robust option parsing, command subcompletion, and sensible defaults for everything you don't specify.
Description:

Optimist is a commandline option parser for Ruby that just gets out of your way. One line of code per option is all you need to write. For that, you get a nice automatically-generated help page, robust option parsing, command subcompletion, and sensible defaults for everything you don't specify.

ruby-anystyle 1.3.14-1.50f1dd5
Propagated dependencies: ruby-anystyle-data@1.2.0 ruby-bibtex-ruby@6.0.0 ruby-namae@1.1.1 ruby-wapiti@2.1.0
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://anystyle.io
Licenses: FreeBSD
Synopsis: Fast and smart citation reference parsing (Ruby library)
Description:

AnyStyle is a very fast and smart parser for academic reference lists and bibliographies. AnyStyle uses powerful machine learning heuristics based on Conditional Random Fields and aims to make it easy to train the model with data that is relevant to your parsing needs.

This package provides the Ruby module AnyStyle. AnyStyle can also be used via the anystyle command-line utility or a web application, though the later has not yet been packaged for Guix.

ruby-colored2 3.1.2
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://github.com/kigster/colored2
Licenses: Expat
Synopsis: This is a heavily modified fork of http://github.com/defunkt/colored gem, with many sensible pull requests combined. Since the authors of the original gem no longer support it, this might, perhaps, be considered a good alternative. Simple gem that adds various color methods to String class, and can be used as follows: require 'colored2' puts 'this is red'.red puts 'this is red with a yellow background'.red.on.yellow puts 'this is red with and italic'.red.italic puts 'this is green bold'.green.bold << ' and regular'.green puts 'this is really bold blue on white but reversed'.bold.blue.on.white.reversed puts 'this is regular, but '.red! << 'this is red '.yellow! << ' and yellow.'.no_color! puts ('this is regular, but '.red! do 'this is red '.yellow! do ' and yellow.'.no_color! end end)
Description:

This is a heavily modified fork of http://github.com/defunkt/colored gem, with many sensible pull requests combined. Since the authors of the original gem no longer support it, this might, perhaps, be considered a good alternative.

Simple gem that adds various color methods to String class, and can be used as follows:

require 'colored2'

puts 'this is red'.red puts 'this is red with a yellow background'.red.on.yellow puts 'this is red with and italic'.red.italic puts 'this is green bold'.green.bold << ' and regular'.green puts 'this is really bold blue on white but reversed'.bold.blue.on.white.reversed puts 'this is regular, but '.red! << 'this is red '.yellow! << ' and yellow.'.no_color! puts ('this is regular, but '.red! do 'this is red '.yellow! do ' and yellow.'.no_color! end end)

ruby-yardstick 0.9.9
Propagated dependencies: ruby-yard@0.9.34
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://github.com/dkubb/yardstick
Licenses: Expat
Synopsis: Measure YARD documentation coverage
Description:

Measure YARD documentation coverage

ruby-dry-logic 1.1.0
Propagated dependencies: ruby-concurrent@1.2.2 ruby-dry-core@0.5.0
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://dry-rb.org/gems/dry-logic
Licenses: Expat
Synopsis: Predicate logic with rule composition
Description:

Predicate logic with rule composition

ruby-pry-rails 0.3.9
Propagated dependencies: ruby-pry@0.14.2
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://github.com/rweng/pry-rails
Licenses: Expat
Synopsis: Use Pry as your rails console
Description:

Use Pry as your rails console

emacs-inf-ruby 20240925.49
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: http://github.com/nonsequitur/inf-ruby
Licenses:
Synopsis: Run a Ruby process in a buffer
Description:

Documentation at https://melpa.org/#/inf-ruby

emacs-ruby-end 20230205.115
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: http://github.com/rejeep/ruby-end
Licenses:
Synopsis: Automatic insertion of end blocks for Ruby
Description:

Documentation at https://melpa.org/#/ruby-end

ruby-equalizer 0.0.11
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://github.com/dkubb/equalizer
Licenses: Expat
Synopsis: Module to define equality, equivalence and inspection methods
Description:

Module to define equality, equivalence and inspection methods

ruby-rdiscount 2.2.0.2
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: http://dafoster.net/projects/rdiscount/
Licenses: Modified BSD
Synopsis: Fast Implementation of Gruber's Markdown in C
Description:

Fast Implementation of Gruber's Markdown in C

ruby-maxminddb 0.1.22
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://github.com/yhirose/maxminddb
Licenses: Expat
Synopsis: Pure Ruby MaxMind DB (GeoIP2) binary file reader.
Description:

Pure Ruby MaxMind DB (GeoIP2) binary file reader.

ruby-gc-tracer 1.5.1
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://github.com/ko1/gc_tracer
Licenses: Expat
Synopsis: gc_tracer gem adds GC::Tracer module.
Description:

gc_tracer gem adds GC::Tracer module.

ruby-lru-redux 1.1.0
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: https://github.com/SamSaffron/lru_redux
Licenses: Expat
Synopsis: An efficient implementation of an lru cache
Description:

An efficient implementation of an lru cache

ruby-ntlm-http 0.1.1
Channel: gn-bioinformatics
Location: gn/packages/ruby.scm (gn packages ruby)
Home page: http://www.mindflowsolutions.net
Licenses: non-copyleft
Synopsis: Ruby/NTLM HTTP provides NTLM authentication over http.
Description:

Ruby/NTLM HTTP provides NTLM authentication over http.

ruby-coveralls 0.8.23
Propagated dependencies: ruby-json@2.1.0 ruby-term-ansicolor@1.7.1 ruby-thor@1.2.2 ruby-tins@1.29.1 ruby-simplecov@0.22.0
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://coveralls.io
Licenses: Expat
Synopsis: Ruby implementation of the Coveralls API
Description:

This package provides a Ruby implementation of the Coveralls API.

ruby-specinfra 2.88.1
Propagated dependencies: ruby-net-scp@4.0.0 ruby-net-ssh@7.1.0 ruby-net-telnet@0.2.0 ruby-sfl@2.3
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://github.com/mizzy/specinfra
Licenses: Expat
Synopsis: Common layer for serverspec and itamae
Description:

This Gem provides a common layer for serverspec and itamae.

ruby-niceogiri 1.1.2
Propagated dependencies: ruby-nokogiri@1.15.2
Channel: guix
Location: gnu/packages/ruby.scm (gnu packages ruby)
Home page: https://github.com/benlangfeld/Niceogiri
Licenses: Expat
Synopsis: Supplement for Nokogiri
Description:

Niceogiri provides wrappers and helpers for XML manipulation using Nokogiri.

Total results: 859