漂亮的Ruby
使用Ruby PP和RuboCop自动纠错功能来缩进、格式化和美化您的Ruby代码。
详细信息
安装
- 总数 18K
- Win 5K
- Mac 10K
- Linux 4K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 1 | 2 | 1 | 3 | 1 | 0 | 0 | 0 | 1 | 3 | 0 | 0 | 1 | 1 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 3 | 0 | 1 |
Linux | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
阅读文档
漂亮的Ruby
使用 Ruby PP 和 RuboCop 自动纠错 来缩进、格式化和美化您的Ruby代码。
依赖
gem install rubocop
命令面板
pretty_ruby_format:格式化
默认快捷键
- Linux: ctrl + shift + r + p
["ctrl+shift+r", "ctrl+shift+p"]
- Mac: shift + super + r + p
["shift+super+r", "shift+super+p"]
- Windows: ctrl + shift + r + p
["ctrl+shift+r", "ctrl+shift+p"]
自定义快捷键
User/Default (Linux).sublime-keymap
:
{ "keys": ["ctrl+shift+h"], "command": "pretty_ruby_format" }
自定义Ruby/RuboCop路径
User/Preferences.sublime-settings
:
// which ruby
"ruby_path": "/home/user/.rvm/rubies/ruby-2.2.2/bin/ruby",
// which rubocop
"rubocop_path": "/home/user/.rvm/gems/ruby-2.2.2/bin/rubocop"
RuboCop问题(RVM):可执行钩子
/usr/bin/env: ruby_executable_hooks: 未找到文件或目录
使用wrappers
替代bin
User/Preferences.sublime-settings
:
// which rubocop
// "rubocop_path": "/home/user/.rvm/gems/ruby-2.2.2/bin/rubocop" // wrong
"rubocop_path": "/home/user/.rvm/gems/ruby-2.2.2/wrappers/rubocop" // correct
Ruby问题(RVM):/wrappers/ruby:未找到
/bin/sh: 1: /home/user/.rvm/rubies/ruby-2.2.2/wrappers/ruby:未找到
不要在ruby bin中使用wrappers
User/Preferences.sublime-settings
:
// which rubocop
// "ruby_path": "/home/user/.rvm/rubies/ruby-2.2.2/wrappers/ruby" // wrong
"ruby_path": "/home/user/.rvm/rubies/ruby-2.2.2/bin/ruby" // correct