Skip to content

Instantly share code, notes, and snippets.

@mmmurf
Created September 23, 2008 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmmurf/12401 to your computer and use it in GitHub Desktop.
Save mmmurf/12401 to your computer and use it in GitHub Desktop.
def self.without_updates_and_deltas
de, ue = @@deltas_enabled, @@updates_enabled
@@deltas_enabled = @@updates_enabled = false
yield
@@deltas_enabled, @@updates_enabled = de, ue
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment