#!/usr/bin/ruby # assumes the user has configured a TextMate project that # points to the directory full of journal entry files require 'date' require 'fileutils' date = Date.today entry = "/Volumes/Personal/journal/#{date.to_s}.textile" FileUtils.touch(entry) system("mate", "-a", entry) `osascript -e 'tell app "Finder" to activate' &>/dev/null &` `osascript -e 'tell app "TextMate" to activate' &>/dev/null &`