0.15
Package to simplify including the Adyen payments services into a Ruby on Rails application.
The package provides functionality to create payment forms, handling and storing notifications
sent by Adyen and consuming the SOAP services provided by Adyen. Moreover, it contains helper
...
2020
2021
2022
2023
2024
2025
0.87
A simple Ruby natural language parser for elapsed time. (For example, 4 hours and 30 minutes, 6 minutes 4 seconds, 3 days, etc.) Returns all results in seconds. Will return an integer unless you get tricky and need a float. (4 minutes and 13.47 seconds, for example.) The reverse can also be perfo...
2020
2021
2022
2023
2024
2025
0.0
# Cryptophysh
My attempt to produce a solution to the requirements listed [here](https://github.com/krystal/code-tasks/blob/main/password-generator.md). Essentially, a library/gem you can include in to your own code to add a `::generate_password` class method on a class.
I've pushed the built g...
2020
2021
2022
2023
2024
2025
0.0
I've found that when developing Rails apps, I tend to almost always pair each scope with an instance method which returns a boolean indicating whether the object is included inside that scope.\n\nThis gem simply automatically creates that method for you. Nothing super fancy, and you might conside...
2020
2021
2022
2023
2024
2025
0.0
Presenters and Model-View-Presenter (MVP) is the second most useful pattern after Service Objects to simplify your medium-to-large app.
ActiveModelPresenter is a small gem that transforms ActiveRecord models into simple decorated objects that you can use to pass data for a JSON or a regular View ...
2020
2021
2022
2023
2024
2025
0.0
This is Daemons 1.0.10 with the addition of Chris Kline's fix from http://blog.rapleaf.com/dev/?p=19 Daemons provides an easy way to wrap existing ruby scripts (for example a self-written server) to be run as a daemon and to be controlled by simple start/stop/restart commands. If you want, you ...
2020
2021
2022
2023
2024
2025
0.0
This library implements a server that emulates the functionality of the network connected Advantech ADAM-6050 digital IO module. Specifically the UDP protocol that the unit speaks has been reverse engineered. Since I don't have an actual device to test with the response messages from the server m...
2020
2021
2022
2023
2024
2025
0.0
For all applications (you are not a mouseclicker, are u?), once in a while you need to supply some configuration values to overrule the built-in defaults. The app-ctx gem does unify and organize built-in constants, config files and commandline option with a clearly defined priority, from low to h...
2020
2021
2022
2023
2024
2025
0.0
Sassic is a simple framework for creating static web sites using SASS stylesheets.
2020
2021
2022
2023
2024
2025
0.0
S3 library provides access to Amazon's Simple Storage Service. It supports both: European and US buckets through REST API.
2020
2021
2022
2023
2024
2025
0.0
After reading the book [SMACSS](https://smacss.com/) and finding it very enlightening, I decided to compile this gem; using the lessons learned from the book. Crossbar will scaffold a Sass structure with a basic set of sass variables and styles for base elements.
2020
2021
2022
2023
2024
2025
0.0
The Conversations API allows users to communicate by sending and receiving messages via Over-The-Top (OTT) messaging services. OTT application is an app or service that provides a product over the Internet and bypasses traditional distribution. Here's an in-depth explanation of what the term mean...
2020
2021
2022
2023
2024
2025
0.0
S3 library provides access to Amazon's Simple Storage Service. It supports both: European and US buckets through REST API.
2020
2021
2022
2023
2024
2025
0.0
This a simple game where virtual players compete to find treasures.
Health of the players is importatnt. The players may get blammed
or get w00ted.
- To start the game on command line:
studiogame.rb <csv file, containing a list of players>
if the optional csv file is not provided, the ...
2020
2021
2022
2023
2024
2025
0.0
The VolatileDB gem allows you to specify a key and an action yielding a particular piece of data.
This data will be stored in the /tmp folder of the file system you are currently running on. Data is accessible
by key. Data will be read and written to storage using File.read() and File.op...
2020
2021
2022
2023
2024
2025
0.0
kCapistrano is an open source tool for running scripts on multiple servers. It’s primary use is for easily deploying applications. While it was built specifically for deploying Rails apps, it’s pretty simple to customize it to deploy other types of applications. This package is a deployment “...
2020
2021
2022
2023
2024
2025
0.0
Provides a set of functions to scan file systems for media files, and dynamically rename them using their metadata. Files are renamed according to a customizable taxonomy. For example, use MediaOrganizer::Renamer to set filenames for a directory of photos to a standard such as: "<date-taken>...
2020
2021
2022
2023
2024
2025
0.0
Music Coder is a music programming library. It generates music entirely through code in the chosen programming language (Ruby).
There are three main reasons a technically minded person would use Music Coder:
Producing music: Write scripts that mimic human creativity, ...
2020
2021
2022
2023
2024
2025
0.0
This gem is still under active development. Please contact me directly with any questions or suggestions.
To start:
r = RedcapAPI.new(token, url) # your institution has it's own url, and each project has it's own token
r.get(optional record_id) # returns all records in JSON fo...
2020
2021
2022
2023
2024
2025
0.0
This gem makes updating specified number fields by ActiveRecord in unusual way.
Instead of generating sql script to update value in usual way like this:
UPDATE users
SET money = 10
WHERE id = 1;
It replaces it with
UPDATE users
SET money = money + de...
2020
2021
2022
2023
2024
2025