|
@@ -5,18 +5,16 @@
|
|
|
5
5
|
bar
|
|
6
|
-
rescue
|
|
6
|
+
rescue StandardError
|
|
7
|
-
def some_method(
|
|
7
|
+
def some_method(_bar)
|
|
8
|
-
puts
|
|
8
|
+
puts 'Hello'
|
|
9
|
-
def some_method
|
|
9
|
+
def some_method; end
|
|
10
|
-
end
|
|
11
|
-
def foo(
|
|
10
|
+
def foo(_bar)
|
|
12
|
-
# TODO Replace this with bar
|
|
11
|
+
# TODO: Replace this with bar
|
|
13
12
|
do_something
|
|
14
|
-
|