Ask HN Rubyists: What's one gem that you wish existed, but doesn't?
1–5 of 5 posts
Re: Ask HN Rubyists: What's one gem that you wish existed, but doesn't?
#2Simple Ruby gem I was surprised didn't exist (that I could find): `validates_twitter_username`
Given user input for username, ensure it is valid. Two levels of verification - one would be probably regex based that the username matches twitter restrictions (valid characters, length less than 15), one that pings twitter to confirm the account is registered. Appropriate ActiveRecord errors etc
Re: Ask HN Rubyists: What's one gem that you wish existed, but doesn't?
#3Cronjob logging and monitoring seems to be pretty tricky and involves a lot of finicky Unix magic, so a nice wrapper would be appreciated.
Re: Ask HN Rubyists: What's one gem that you wish existed, but doesn't?
#4I posted this in another thread - it is nothing groundbreaking but would be a good small project for someone to tackle: Simple Ruby gem I was surprised didn't exist (that I could find): `validates_twitter_username` Given user input for username, ensure it is valid. Two levels of verification - one would be probably regex based that the username matches twitter restrictions (valid characters, length less than 15), one…