1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
- name: indent if else end statement
input: |
if foo
bar = 1
elsif foo2
bar = 2
else
bar = 3
end
output: |
if foo
bar = 1
elsif foo2
bar = 2
else
bar = 3
end
- name: handle case where if begins and ends on same line
input: |
foo do
if a then b = 1 else b = 2 end
end
output: |
foo do
if a then b = 1 else b = 2 end
end
- name: indent not double indent case/when statement
input: |
case foo
when 1
bar = 'some string'
when 2
bar = 'some other string'
when 3 then bar = '3'
else
bar = '4'
end
output: |
case foo
when 1
bar = 'some string'
when 2
bar = 'some other string'
when 3 then bar = '3'
else
bar = '4'
end
- name: indent while statement
input: |
def foo
bar = 1
while bar < 3
puts bar
bar = bar.next
end
end
output: |
def foo
bar = 1
while bar < 3
puts bar
bar = bar.next
end
end
- name: ignore code after end of line comment
input: |
def method_containing_end_of_line_comment
a = b # Comment containing do
end
output: |
def method_containing_end_of_line_comment
a = b # Comment containing do
end
- name :not indent multineline comment:
input: |
=begin
Comment
=end
foo
- name: indent lines after first of multiline code
input: |
def method_with_multiline_method_call
multiline_method_call \
first_arg,
second_arg,
third_arg
end
output: |
def method_with_multiline_method_call
multiline_method_call \
first_arg,
second_arg,
third_arg
end
- name: indent method call with bracketed multiline arguments
input: |
def method_with_multiline_method_call
multiline_method_call(foo,
bar,
foobar)
end
output: |
def method_with_multiline_method_call
multiline_method_call(foo,
bar,
foobar)
end
- name: indent method call with bracketed multiline arguments_even_if_not_first_block_on_line
input: |
if (foo = bar(first_arg,
second_arg))
do_something
end
output: |
if (foo = bar(first_arg,
second_arg))
do_something
end
- name: indent method call with multiline arguments (implicit brackets)
input: |
def method_with_multiline_method_call
multiline_method_call first_arg,
second_arg,
# Comment in the middle of all this
third_arg
another_method_call
end
output: |
def method_with_multiline_method_call
multiline_method_call first_arg,
second_arg,
# Comment in the middle of all this
third_arg
another_method_call
end
- name: should indent multiline method call chains
input: |
def method_with_multiline_method_call_chain
multiline_method_call.
foo.
bar
another_method_call
end
output: |
def method_with_multiline_method_call_chain
multiline_method_call.
foo.
bar
another_method_call
end
- name: handle multiline code with escaped quotes in strings
input: |
def method_containing_multiline_code_with_strings
a = "foo #{method}" +
"bar"
end
output: |
def method_containing_multiline_code_with_strings
a = "foo #{method}" +
"bar"
end
- name: not change the indentation of multiline strings
input: |
def method_containing_long_string
a = "
Some text across multiple lines
And another line
"
b = 5
end
output: |
def method_containing_long_string
a = "
Some text across multiple lines
And another line
"
b = 5
end
- name: not treat divison as start of regex
input: |
def foo
a = 1/2
b = :foo
end
output: |
def foo
a = 1/2
b = :foo
end
- name: not indent multiline string even if it uses non quote delimiter
pending: implementation of block matcher for non quote delimited strings
input: |
foo = <<TEXT
some string
and more string
TEXT
- name: recognize when two blocks end on the same line
input: |
class Foo
def foobar
if a = 3
return 5
end; end
end
output: |
class Foo
def foobar
if a = 3
return 5
end; end
end
- name: indent multiline array definition
input: |
class Foo
@@bar = [1, 2,
3, 4]
end
output: |
class Foo
@@bar = [1, 2,
3, 4]
end
- name: indent multiline array definition (all on separate lines)
input: |
class Foo
@@bar = [
1,
2,
3,
4
]
end
output: |
class Foo
@@bar = [
1,
2,
3,
4
]
end
- name: indent multiline hash definition
input: |
class Foo
@@bar = { :foo => 1, :bar => 2
:c => 3, :d => 4 }
end
output: |
class Foo
@@bar = { :foo => 1, :bar => 2
:c => 3, :d => 4 }
end
- name: indent multiline block delimited with curly brackets
input: |
foo = bar.collect { |paragraph|
paragraph.strip
}.join("\n")
output: |
foo = bar.collect { |paragraph|
paragraph.strip
}.join("\n")
- name: indent method call with bracketed multiline arguments including continuing statements
pending: Implementation of support for continuing statements in bracketed multline arguments
input: |
def foo
bar(first_arg,
second_part_a +
second_part_b,
third_arg)
end
output: |
def foo
bar(first_arg,
second_part_a +
second_part_b,
third_arg)
end
- name: indent continuing lines ending in = and +
input: |
def foo
@bar ||=
1 +
2
end
output: |
def foo
@bar ||=
1 +
2
end
- name: indent block within implicit brackets
pending: Implementation of support for this feature
input: |
def foo
bar first_arg,
second_arg,
[
1,
2,
3
],
last_arg
end
output: |
def foo
bar first_arg,
second_arg,
[
1,
2,
3
],
last_arg
end
- name: "should not treat ':', '_' or '.' as word boundaries before keywords"
input: |
case params[:do]
when "update_if"
update_if.if
when "update_do"
update_do.do
end
output: |
case params[:do]
when "update_if"
update_if.if
when "update_do"
update_do.do
end
- name: should recognize interpolation and not match other content within double quotes
input: |
def foo
return "Foo#{" (#{bar})"}"
end
output: |
def foo
return "Foo#{" (#{bar})"}"
end
- name: should not non interpolated content within regexes and strings and backticks
input: |
def foo
@foo = [
/" if bar/,
`ls if`,
"if fun =",
'else'
]
end
output: |
def foo
@foo = [
/" if bar/,
`ls if`,
"if fun =",
'else'
]
end
- name: should handle one liners that include an end statement correctly
input: |
def foo; puts 'foo' end
def bar; puts 'bar' end
output: |
def foo; puts 'foo' end
def bar; puts 'bar' end
- name: should handle if and unless statements that are terminated implicitly
input: |
def foo
bar = (1 + 2) if foobar
baz unless foobaz
Boo.new(:boo) rescue raise('Houston we have a problem')
end
output: |
def foo
bar = (1 + 2) if foobar
baz unless foobaz
Boo.new(:boo) rescue raise('Houston we have a problem')
end
|