如何从命令行重新格式化 ruby 代码?
给定的源文件有错误的缩进、不正确的空白管理等等。如何重新格式化代码(例如文件)并应用 Ruby 的样式指南(如果存在)?
Given a source file with bad indentation, incorrect white space management, and so on. How do I reformat the code such a file and apply the Ruby's style guide (if present)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该是你的编辑的任务。在 vim(针对 Ruby 配置)中,只需按
gg=G
xD执行此操作的 Ruby 脚本位于:http://www.arachnoid.com/ruby/rbeautify.rb.html
This should be a task of your editor. In vim (configured for Ruby), just press
gg=G
xDA Ruby script that does it is available at: http://www.arachnoid.com/ruby/rbeautify.rb.html
自己没有尝试过:
http://www.arachnoid.com/ruby/rubyBeautifier.html< /a>
Haven't tried it myself:
http://www.arachnoid.com/ruby/rubyBeautifier.html