PageRenderTime 27ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/ruby-mode/Rake/task :task_name => [:dependent, :tasks] do __ end.yasnippet

http://github.com/ridgetang/snippets
Unknown | 9 lines | 9 code | 0 blank | 0 comment | 0 complexity | 53e32112bb2124586f9ca70f0fd02ba5 MD5 | raw file
  1. # -*- mode: snippet -*-
  2. # key: tas
  3. # contributor: Translated from TextMate Snippet
  4. # name: task :task_name => [:dependent, :tasks] do .. end
  5. # --
  6. desc "${1:Task description}"
  7. task :${2:${3:task_name} => ${4:[:${5:dependent, :tasks}]}} do
  8. $0
  9. end