+2013-10-22 Dmitry Gutov <dgutov@yandex.ru>
+
+ * indent/ruby.rb: Move two examples to "working" section, add one
+ more.
+
2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
* indent/ruby.rb: New examples for indentation of blocks. Example
.qux
.bar
+foo do
+ bar
+ .tee
+end
+
+def bar
+ foo
+ .baz
+end
+
# Examples below still fail with `ruby-use-smie' on:
foo = [1, 2, 3].map do |i|
method (a + b),
c
-foo do
+bar.foo do # "." is parent to "do"; it shouldn't be.
bar
- .tee
-end
-
-def bar
- foo
- .baz
end