Wondering if it's possible to pass options to the clone action, specifically `--recursive` and `--depth=1` Here's what I've got: ``` ruby repo = Rugged::Repository.clone_at @git_url, @source, { :branch => @git_ref, :recursive => true, :depth => 1 } ```