Last active
May 17, 2022 19:39
-
-
Save philtr/e8b1df082426e7817e7e3a53c35960bc 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
# • - space | |
# ─┤ - tab | |
class Thing | |
─┤def to_hash | |
─┤─┤some_long_method_call(that,•wraps:•••:across, | |
─┤─┤••••••••••••••••••••••••••••several:•:lines, | |
─┤─┤••••••••••••••••••••••••••••and_it:••:has, | |
─┤─┤••••••••••••••••••••••••••••aligned:•:arguments) | |
─┤─┤{ | |
─┤─┤─┤name:••••••"My thing" | |
─┤─┤─┤content:•••"It does lots of cool stuff." | |
─┤─┤─┤created_at:•Time.current | |
─┤─┤} | |
─┤end | |
end | |
# You can adjust your tab width according to your preferences. | |
class Thing | |
───┤def to_hash | |
───┤───┤some_long_method_call(that,•wraps:•••:across, | |
───┤───┤••••••••••••••••••••••••••••several:•:lines, | |
───┤───┤••••••••••••••••••••••••••••and_it:••:has, | |
───┤───┤••••••••••••••••••••••••••••aligned:•:arguments) | |
───┤───┤{ | |
───┤───┤───┤name:••••••"My thing" | |
───┤───┤───┤content:•••"It does lots of cool stuff." | |
───┤───┤───┤created_at:•Time.current | |
───┤───┤} | |
───┤end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment