Interestings
Gem: capybara-email
(PM and DK)
helpers for emails in capybara, allows you to open a specific email, make assertions and even click links!
https://github.com/dockyard/
TrackerTracker
(Josh Knowles)
View & manager stories across multiple projects built by our former client IntentMedia - https://github.com/
Vim Tip of the week: :g executes on matched search lines
(Dimitri Roche)
:g
:[range]g//cmd
Example: :g/Hello/d
This will act on the specified range, by executing the Ex command cmd (An Ex command is one starting with a colon (‘:’)) for each line matching . Before executing cmd, “.” is set to the current line.
(Thanks John Barker)