The Ruby Developer Toolkit
Ruby developers thrive on elegance and convention. Whether you are building a Rails API, crafting a gem, or debugging a Sidekiq payload, repetitive micro-tasks like formatting JSON responses, testing regex patterns, or comparing config diffs slow you down. These free, browser-based tools eliminate that friction so you can stay in flow.
JSON Formatter & Validator
Rails APIs return JSON constantly. Paste a raw API response to pretty-print and validate it in one click. Catches missing commas and mismatched braces before they become 500 errors in production. Ideal for verifying jbuilder or ActiveModel::Serializer output.
RegExp Tester
Ruby's Regexp class is powerful but tricky. Test patterns against sample strings with live highlighting. Perfect for route constraints, log-line parsers, and input validators inside ActiveRecord models.
Base64 Encoder / Decoder
Decode JWT tokens returned by Devise or Warden, encode binary attachments for API uploads, or inspect data: URIs embedded in ActionMailer templates — all without leaving the browser.
Code Diff Tool
Compare two versions of a Ruby file, Gemfile.lock delta, or YAML config side by side. Faster than git diff when you just need a quick visual comparison during code review.
JSON to YAML Converter
Rails uses YAML for database.yml, credentials.yml.enc, and i18n locale files. Convert JSON payloads to YAML in one step when migrating configuration or importing data from external APIs.
Crontab Calculator
Validate cron expressions before dropping them into whenever or sidekiq-cron. See the next ten execution times in plain English — no more "it ran at 3 AM instead of 3 PM" surprises.
MD5 / Hash Generator
Generate MD5, SHA-256, and SHA-512 hashes to verify gem checksums, compare ETag headers, or test Digest::SHA256 output without writing a one-off script.
URL Encoder / Decoder
Decode percent-encoded query strings from Rails logs or encode special characters before constructing redirect URIs in OAuth flows. Essential for debugging ActionDispatch routing issues.
Password Generator
Generate cryptographically strong secrets for SECRET_KEY_BASE, API tokens, and service-account credentials. Copy and paste directly into rails credentials:edit.
Timestamp Converter
Convert Unix epoch values to human-readable dates and back. Useful when reading Sidekiq job metadata, debugging created_at columns, or correlating server log timestamps across time zones.
Color Converter
Translate HEX to RGB or HSL when theming Rails views. Verify design tokens match the CSS variables in your asset pipeline without opening a separate design tool.
Code to Image
Turn Ruby snippets into clean, shareable images for blog posts, gem README files, or pull-request descriptions — without screenshotting your entire editor.