Skip to content

Instantly share code, notes, and snippets.

@judofyr
Created August 11, 2009 18:51
Show Gist options
  • Save judofyr/166047 to your computer and use it in GitHub Desktop.
Save judofyr/166047 to your computer and use it in GitHub Desktop.
if $sitedir then
if (not $sitedir.=~(Regexp.quote(version))) then
$sitedir = File.join($sitedir, version)
end
else
$sitedir = File.join($libdir, "site_ruby")
end
if !$sitedir
$sitedir = File.join($libdir, "site_ruby")
elsif $sitedir !~ Regexp.quote(version)
$sitedir = File.join($sitedir, version)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment