Last active
August 29, 2015 14:05
RubyTest configuration file calling fig-run-web script to fix the output streaming in Sublime Text (http://blog.zedroot.org/sublime-text-and-rubytest-running-in-a-docker-container-managed-by-fig/)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"erb_verify_command": "erb -xT - {file_name} | ruby -c", | |
"ruby_verify_command": "ruby -c {file_name}", | |
"run_ruby_unit_command": "ruby -Itest {relative_path}", | |
"run_single_ruby_unit_command": "ruby -Itest {relative_path} -n '{test_name}'", | |
"run_cucumber_command": "fig-to-sublime cucumber -r features {relative_path}", | |
"run_single_cucumber_command": "fig-to-sublime cucumber -r features {relative_path} -l{line_number}", | |
"run_rspec_command": "fig-to-sublime rspec {relative_path}", | |
"run_single_rspec_command": "fig-to-sublime rspec {relative_path}:{line_number}", | |
"ruby_unit_folder": "test", | |
"ruby_cucumber_folder": "features", | |
"ruby_rspec_folder": "spec", | |
"check_for_rbenv": false, | |
"check_for_rvm": false, | |
"check_for_bundler": false, | |
"check_for_spring": false, | |
"ruby_use_scratch" : false, | |
"save_on_run": false, | |
"ignored_directories": [".git", "vendor", "tmp"], | |
"hide_panel": false, | |
"before_callback": "", | |
"after_callback": "", | |
"theme": "Packages/RubyTest/TestConsole.hidden-tmTheme", | |
"syntax": "Packages/RubyTest/TestConsole.tmLanguage" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment