0.21
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
JSON formatter for SimpleCov code coverage tool for ruby 1.9+
2020
2021
2022
2023
2024
2025
0.32
OmniAuth Shibboleth strategies for OmniAuth 1.x
2020
2021
2022
2023
2024
2025
0.32
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
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
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
American style month/day/year date parsing for ruby 1.9+
2020
2021
2022
2023
2024
2025
0.27
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
# Excel to Code
[](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.26
Send User Notifications on Mac OS X 10.8 - with status icons.
2020
2021
2022
2023
2024
2025
0.01
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
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
== 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
Migrations and model helpers for creating and managing PostgreSQL 10 partitions
2020
2021
2022
2023
2024
2025
0.0
[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
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
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.22
Your Rails console, 1984 style
2020
2021
2022
2023
2024
2025
0.21
Adds Sinatra 1.x style patterns to Mustermman
2020
2021
2022
2023
2024
2025
0.0
== 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