Add tip jars to your Rails app. Works with any payment link.
Hover to see the expand effect
Everything you need, nothing you don't
Payment providers handle all transactions and compliance.
Self-contained with inline styles. Just Rails.
Uses Rails' standard JavaScript framework.
Control colors, position, animations, and icons.
Works on all devices.
Stripe, PayPal, Ko-fi, or any payment link.
# Gemfile gem 'rails_tipjar' # Then run: # bundle install
# Basic implementation <%= tip_jar payment_link: 'https://your.payment.link' %> # With customization <%= tip_jar payment_link: 'https://your.payment.link', icon: :coffee, color: '#10b981', message: 'Buy me a coffee', pulse: true %> # Modal with multiple amounts <%= tip_jar payment_links: { small: 'https://link.com/5', medium: 'https://link.com/10', large: 'https://link.com/25' }, modal_title: 'Support Development' %>