budu (Nicolas Buduroi)
- Login: budu
- Email: nbuduroi@gmail.com
- Registered on: 08/02/2011
- Last sign in: 05/08/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
08/02/2011
-
10:26 AM Ruby Bug #5141 (Closed): Inconsistent indentation in method call with args on multiple lines.
- The indentation of method call with arguments spread on multiple lines is inconsistent.
belongs_to(:foo,
:class_name => 'Foo',
:foreign_key => 'foo_id')
has_many(:bar,
:class_name => 'Bar',
:... -
10:11 AM Ruby Bug #5140 (Closed): Emacs ruby-mode major indentation bug with Ruby 1.9
- When spreading the arguments of a method call on multiple lines using the new hash syntax from Ruby 1.9, the level of indentation is retained even after the closing parenthesis. Example:
belongs_to(:foo,
class_name: 'Foo'...