Created
October 9, 2011 04:35
-
-
Save jccarbonfive/1273304 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Manual hunk edit mode -- see bottom for a quick guide | |
| @@ -1,18 +1,16 @@ | |
| class Foo | |
| def bar | |
| puts 'BAR' | |
| + $logger.log 'Foo#bar' | |
| end | |
| · | |
| def baz | |
| puts 'BAZ' | |
| + $logger.log 'Foo#baz' | |
| end | |
| · | |
| private | |
| · | |
| def qux | |
| puts 'qux' | |
| end | |
| · | |
| def quux | |
| puts 'quux' | |
| end | |
| # --- | |
| # To remove '-' lines, make them ' ' lines (context). | |
| # To remove '+' lines, delete them. | |
| # Lines starting with # will be removed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment