Alien-SVN
view release on metacpan or search on metacpan
src/subversion/subversion/bindings/swig/ruby/svn/util.rb view on Meta::CPAN
#{ext_mod.name}.#{meth}(*args, &block)
end
module_function :#{target_name}
EOC
end
end
end
def filename_to_temp_file(filename)
file = Tempfile.new("svn-ruby")
file.binmode
file.print(File.open(filename, "rb") {|f| f.read})
file.close
file.open
file.binmode
file
end
def reset_message_directory
if /cygwin|mingw|mswin32|bccwin32/.match(RUBY_PLATFORM)
top_directory = File.join(File.dirname(__FILE__), "..", "..")
top_directory = File.expand_path(top_directory)
locale_directory = File.join(top_directory, "share", "locale")
locale_directory_win = locale_directory.tr(File::SEPARATOR,
File::ALT_SEPARATOR)
( run in 0.343 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )