0.21
No commit activity in last 3 years
No release in over 3 years
Simple immutable value objects for ruby. Make a new value class: Point = Value.new(:x, :y) And use it: p = Point.new(1,0) p.x => 1 p.y => 0
2020
2021
2022
2023
2024
2025
0.34
No release in over 3 years
Low commit activity in last 3 years
JSON formatter for SimpleCov code coverage tool for ruby 1.9+
2020
2021
2022
2023
2024
2025
0.32
No release in over 3 years
Low commit activity in last 3 years
Color is a Ruby library to provide RGB, CMYK, HSL, and other color space manipulation support to applications that require it. It provides optional named RGB colors that are commonly supported in HTML, SVG, and X11 applications. The Color library performs purely mathematical manipulation of the ...
2020
2021
2022
2023
2024
2025
0.31
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
LiveReload is a Safari/Chrome extension + a command-line tool that: 1. Applies CSS and JavaScript file changes without reloading a page. 2. Automatically reloads a page when any other file changes (html, image, server-side script, etc).
2020
2021
2022
2023
2024
2025
0.16
No commit activity in last 3 years
No release in over 3 years
Bootstraps in code required to take advantage of EventMachine/EM-Synchrony's concurrency enhancements for slow IO. Patches TCPSocket, which makes anything based on it EM-aware (including RestClient). Includes patch for tests. Requires Fibers (Ruby 1.9, JRuby and Rubinius in 1.9 mode)
2020
2021
2022
2023
2024
2025
0.27
Low commit activity in last 3 years
No release in over a year
American style month/day/year date parsing for ruby 1.9+
2020
2021
2022
2023
2024
2025
0.27
Low commit activity in last 3 years
No release in over a year
PostgreSQL Cursor is an extension to the ActiveRecord PostgreSQLAdapter for very large result sets. It provides a cursor open/fetch/close interface to access data without loading all rows into memory, and instead loads the result rows in 'chunks' (default of 1_000 rows), buffers them, an...
2020
2021
2022
2023
2024
2025
0.08
No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
# Excel to Code [![Tests Passing](https://travis-ci.org/tamc/excel_to_code.svg?branch=master)](https://travis-ci.org/tamc/excel_to_code) excel_to_c - roughly translate some Excel files into C. excel_to_ruby - roughly translate some Excel files into Ruby. This allows spreadsheets to be: 1. Em...
2020
2021
2022
2023
2024
2025
0.01
No commit activity in last 3 years
No release in over 3 years
Find rational approximation to given real number. Based on the theory of continued fractions if x = a1 + 1/(a2 + 1/(a3 + 1/(a4 + ...))) then best approximation is found by truncating this series (with some adjustments in the last term). Note the fraction can be recovered as the first column of...
2020
2021
2022
2023
2024
2025
0.25
No release in over 3 years
Low commit activity in last 3 years
This gem allows you to easily use [Hashids](http://hashids.org/ruby/) in your Rails app. Instead of your models using sequential numbers like 1, 2, 3, they will instead have unique short hashes like "yLA6m0oM", "5bAyD0LO", and "wz3MZ49l". The database will still use integers under...
2020
2021
2022
2023
2024
2025
0.0
No commit activity in last 3 years
No release in over 3 years
== Synopsys <code>Enumerable#filter</code> - extended <code>Enumerable#select</code> == Examples String filter (acts like <code>Enumerable#grep</code>): [1, 2, 3, 'ab'].filter(/a/) # => ['ab'] [1, 2, 3, '3'].filter('3') # => ['3'] You can pass a <code>Proc</code> ...
2020
2021
2022
2023
2024
2025
0.23
Low commit activity in last 3 years
A long-lived project that still receives updates
Migrations and model helpers for creating and managing PostgreSQL 10 partitions
2020
2021
2022
2023
2024
2025
0.0
No release in over 3 years
Low commit activity in last 3 years
[1,2,3,4,5].in_groups(2) => [ [1,2,3], [4,5] ] ------------------------------------------------------- [1,2,3,4,5].in_groups_of(2) => [ [1,2], [3,4], [5] ] ------------------------------------------------------- [1,2,3,4,5].in_groups_of(2, nil_fill: true) => [ [1,2], [3,4], [5...
2020
2021
2022
2023
2024
2025
0.0
No release in over 3 years
Lookout-Rack Lookout-Rack provides easy interaction with Rack┬╣ from Lookout┬▓. It provides you with a session connected to your Rack application through which you can make requests, check responses, follow redirects and set, inspect, and clear cookies. ...
2020
2021
2022
2023
2024
2025
0.0
Low commit activity in last 3 years
A long-lived project that still receives updates
Using Minitest::Ok, you can write: * 'ok {1+1} == 2' instead of 'assert_equal 2, 1+1', * 'ok {1+1} > 0' instead of 'assert_operator 1+1, :>, 0', * 'ok {5}.in?(1..9)' instead of 'assert_include 1..9, 5', and so on.
2020
2021
2022
2023
2024
2025
0.0
No commit activity in last 3 years
No release in over 3 years
== Synopsys Ruby Enumerable extension. Main idea is lazy computations within enumerators. == Usage Install as a gem: sudo gem install deferred_enum This gem introduces DeferredEnumerator class: ary = [1, 2, 3, 4] deferred = ary.defer # #<DeferredEnumerator: [1, 2, 3, 4]:ea...
2020
2021
2022
2023
2024
2025