# File lib/fastcst/command/begin.rb, line 9
 9:         def initialize(argv)
10:             @directory = "."
11:         
12:             super(argv, [
13:                 ["-p", "--purpose TEXT", "The purpose of this revision", :@purpose],
14:                 ["-r", "--revision NAME", "A name for the revision (make sure it can be a file name)", :@revision]
15:             ])
16:             
17:             @repo_dir = Repository.search
18:         end