maltize / sublime-text-2-ruby-tests

Sublime Text 2 plugin for running ruby tests! (Unit, RSpec, Cucumber)
722 stars 119 forks source link

fix single test syntax for Rspec 3.xx #231

Closed stefanosc closed 10 years ago

stefanosc commented 10 years ago

In Rspec 3.xx the -l option to specify line number is no longer supported. You can still pass the line using rspec spec/some_spec.rb:10 (where 10 is the line number) I simply edited the command default RubyTest command for rspec single test to reflect this.

I hope this helps.