1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-07-01 10:46:49 +02:00
muflax65ngodyewp.onion/commands/log.rb
2012-05-26 20:21:02 +02:00

18 lines
372 B
Ruby

usage 'log'
summary 'create new log entry'
description 'Opens new log entry in Emacs.'
module Nanoc::CLI::Commands
class CreateLog < ::Nanoc::CLI::CommandRunner
def run
page = daily_logs.last.gsub(/(\d+)/) {|s| s.to_i + 1}
puts "editing: #{page}..."
system "emacs-gui #{page}"
end
end
end
runner Nanoc::CLI::Commands::CreateLog