Skip to content

Instantly share code, notes, and snippets.

@tekkub
Created November 21, 2008 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tekkub/27573 to your computer and use it in GitHub Desktop.
Save tekkub/27573 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