Skip to content

Instantly share code, notes, and snippets.

@defunkt
Forked from tekkub/gist:27573
Created November 25, 2008 01:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save defunkt/28743 to your computer and use it in GitHub Desktop.
Save defunkt/28743 to your computer and use it in GitHub Desktop.
def with_umask(mask)
previous = File.umask(mask)
yield
File.umask(previous)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment