forked from maltize/sublime-text-2-ruby-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
12 lines (12 loc) · 979 Bytes
/
Default.sublime-commands
1
2
3
4
5
6
7
8
9
10
11
12
[
{ "caption": "RubyTest: Run Single Test", "command": "run_single_ruby_test" },
{ "caption": "RubyTest: Run All Ruby Tests", "command": "run_all_ruby_test" },
{ "caption": "RubyTest: Run Last Ruby Test", "command": "run_last_ruby_test" },
{ "caption": "RubyTest: Show Test Panel", "command": "show_test_panel" },
{ "caption": "RubyTest: Verify Syntax", "command": "verify_ruby_file" },
{ "caption": "RubyTest: Generate Rails Migration", "command": "ruby_rails_generate", "args" : {"type" : "migration"} },
{ "caption": "RubyTest: Generate Rails Model", "command": "ruby_rails_generate", "args" : {"type" : "model"} },
{ "caption": "RubyTest: Generate Rails Controller", "command": "ruby_rails_generate", "args" : {"type" : "controller"} },
{ "caption": "RubyTest: Extract Local Variable", "command": "ruby_extract_variable" },
{ "caption": "RubyTest: Switch between code and test", "command": "switch_between_code_and_test", "args": {"split_view": false} }
]