Commit 402b875a authored by Eloy Durán's avatar Eloy Durán

Make specs green.

parent ac2b400e
...@@ -3,12 +3,16 @@ module Pod ...@@ -3,12 +3,16 @@ module Pod
class Subversion < Downloader class Subversion < Downloader
executable :svn executable :svn
def initialize(target_path, url, options)
@target_path, @url, @options = target_path, url, options
end
def download def download
svn! "export #{reference_url}" "#{target_path}"| svn! %|export "#{reference_url}" "#{target_path}"|
end end
def download_head def download_head
svn! "export #{trunk_url}" "#{target_path}"| svn! %|export "#{trunk_url}" "#{target_path}"|
end end
def reference_url def reference_url
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment