This is a custom Ruby package, that includes snippets, custom syntax highlighters and more!
ATTENTION: This plugin uses the new .sublime-syntax
format, which is only available on Dev Channel Build 3084.
First of all, add this custom repository: https://gist.github.com/fnando/56393d3900af55bf9e94; just follow the instructions.
Then, disable the built-in Ruby
package using Package Control.
Finally, install the Better Ruby
package. Also, install the ApplySyntax package and use the following settings.
By the way, there is a Better Rails package as well.
{
"new_file_syntax": "Better Ruby/Ruby",
"reraise_exceptions": true,
"syntaxes": [
{
"syntax": "Better Ruby/Bundler",
"rules": [
{"file_path": ".*(\\\\|/)Gemfile$"}
]
},
{
"syntax": "Better Ruby/Puma",
"rules": [
{"file_path": ".*(\\\\|/)puma\\.rb$"}
]
},
{
"syntax": "Better Ruby/Ruby Test",
"rules": [
{"file_path": ".*_test\\.rb$"}
]
},
{
"syntax": "Better Ruby/Ruby",
"extensions": ["thor", "rake", "simplecov", "jbuilder", "rb", "podspec", "rabl"],
"rules": [
{"file_path": ".*(\\\\|/)Capfile$"},
{"file_path": ".*(\\\\|/)Guardfile$"},
{"file_path": ".*(\\\\|/)[Rr]akefile$"},
{"file_path": ".*(\\\\|/)Berksfile$"},
{"file_path": ".*(\\\\|/)[Cc]heffile$"},
{"file_path": ".*(\\\\|/)Thorfile$"},
{"file_path": ".*(\\\\|/)Podfile$"},
{"file_path": ".*(\\\\|/)config.ru$"},
{"file_path": ".*\\\\Vagrantfile(\\\\..*)?$"},
{"file_path": ".*/Vagrantfile(/..*)?$"},
{"interpreter": "ruby"}
]
}
]
}
By default, snippets use '
as the preferred quote style. If you want to change it to "
, just create the file Packages/Users/Ruby-Quotes.tmPreferences
with the following content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Quotes</string>
<key>scope</key>
<string>source.ruby</string>
<key>settings</key>
<dict>
<key>shellVariables</key>
<array>
<dict>
<key>name</key>
<string>TM_QUOTE</string>
<key>value</key>
<string>"</string>
</dict>
</array>
</dict>
<key>uuid</key>
<string>0FBD0784-F200-433C-AFFF-7F02BD6F7DB0</string>
</dict>
</plist>