Class: RakeDotNet::SvnCmd
Instance Attribute Summary
Attributes inherited from Cli
Instance Method Summary collapse
- #cmd ⇒ Object
-
#initialize(params = {}) ⇒ SvnCmd
constructor
A new instance of SvnCmd.
Methods inherited from Cli
Constructor Details
#initialize(params = {}) ⇒ SvnCmd
Returns a new instance of SvnCmd.
1115 1116 1117 1118 1119 1120 1121 |
# File 'lib/rake_dotnet.rb', line 1115 def initialize(params={}) sps = params[:search_paths] || [] sps << File.join(TOOLS_DIR, 'svn', 'bin') sps << File.join(ENV['PROGRAMFILES'], 'subversion', 'bin') sps << File.join(ENV['PROGRAMFILES'], 'svn', 'bin') super(params.merge({:exe_name=>'svn.exe',:search_paths=>sps})) end |
Instance Method Details
#cmd ⇒ Object
1123 1124 1125 |
# File 'lib/rake_dotnet.rb', line 1123 def cmd return super end |