diff options
author | Wild Kat <wk@futureinquestion.net> | 2018-04-21 13:27:05 +0200 |
---|---|---|
committer | Wild Kat <wk@futureinquestion.net> | 2018-04-21 13:35:54 +0200 |
commit | 21e3d6490496573f25ef77fe8172766ac7d1a736 (patch) | |
tree | 785e5243f5f7ffe7e5a4bfcde551ec04c723b2ae /lib/oxidized/source/source.rb | |
parent | 2648b1bb271727976e2d96123fcd51d52af39f79 (diff) |
the great makeover - standardize layout, alignment, indentation
Diffstat (limited to 'lib/oxidized/source/source.rb')
-rw-r--r-- | lib/oxidized/source/source.rb | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/oxidized/source/source.rb b/lib/oxidized/source/source.rb index 9b8bc94..3bae0f6 100644 --- a/lib/oxidized/source/source.rb +++ b/lib/oxidized/source/source.rb @@ -11,13 +11,12 @@ module Oxidized end def node_var_interpolate var - case var - when "nil" then nil - when "false" then false - when "true" then true - else var - end + case var + when "nil" then nil + when "false" then false + when "true" then true + else var + end end - end end |