lib/rscm/base.rb in rscm-0.4.0 vs lib/rscm/base.rb in rscm-0.4.2

- old
+ new

@@ -52,15 +52,15 @@ props.delete("@default_options") props.sort! end # Destroys the working copy - def destroy_working_copy + def destroy_working_copy(options={}) FileUtils.rm_rf(checkout_dir) unless checkout_dir.nil? end # Whether or not the SCM represented by this instance exists. - def central_exists? + def central_exists?(options={}) # The default implementation assumes yes - override if it can be # determined programmatically. true end