# File lib/fastcst/command/apply.rb, line 8 8: def initialize(argv) 9: @directory = "." 10: @undo = true 11: 12: super(argv, [ 13: ["-i", "--id ID", "Specify a changeset ID to send (defaults to current)", :@id], 14: ["-r", "--rev ID", "Specify a changeset Revision name to send", :@rev], 15: ["-t", "--test", "Run the apply in test mode (does nothing, reports failures)", :@test_run] 16: ]) 17: 18: @repo_dir = Repository.search 19: end