BeautifyRuby icon indicating copy to clipboard operation
BeautifyRuby copied to clipboard

Sublime Text 2 & 3 Plugin to Beautify Ruby

Results 28 BeautifyRuby issues
Sort by recently updated
recently updated
newest added

When I try to beautify large files (specially html.erb files), Sublime text gets stuck and I have to forcefully exit the application. Why is that?

I added the ruby path, checked htmlbeautifier. Everything is fine but it's not working. It beautifies .rb files but not .html.erb files. Earlier it worked. But all of a sudden...

I am using Sublime 3 and installed BeautifyRuby via the package control. BeautifyRuby reports on saving an .erb file the error "Error: invalid output. Check your ruby interpreter settings" when...

for example: methods: ``` def something ... end # one newline ^ def other_method ... end ``` I was thinking this would be handy if someone accidentally put in like...

At the moment there are own settings of BeautifyRuby. Replacing them by some of the Sublime states, this issue will fix at least to others as well. - #23 -...

If you have a regex like: expression = /([0-9]*)/ The beautifier chokes and adds extra indents after it. You can work around this by commenting out the regex line, then...

``` ruby class A def foo "abc" =~ /\w+/ puts $` end def bar end end ``` After BeautifyRuby runs, it turns out to be: ``` ruby class A def...

As a pity, BeautifyRuby does not leave here_docs untouched. This makes BeautifyRuby hard to use in this case. Example: `````` ruby module FOO def foo config =