I posted this in another thread - it is nothing groundbreaking but would be a good small project for someone to tackle:<p>Simple Ruby gem I was surprised didn't exist (that I could find): `validates_twitter_username`<p>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
Some kind of admin/logging console for cron jobs (specifically integration with the `whenever` gem). I have a few jobs that run daily/nightly/weekly and I would love to be able to get simple information like: when was the last time this ran, when is the next scheduled time, were there any errors, what was the output.<p>Cronjob logging and monitoring seems to be pretty tricky and involves a lot of finicky Unix magic, so a nice wrapper would be appreciated.