I am starting with Rspec and I want to have something just like this plugin, however I can not be able to make it work. please below I provide all the info regarding this issue:
Log shows just:
Switched syntax to: RSpec
Running / U s e r s / l i b a r d o a l e x i s / . r v m / b i n / r v m - a u t o - r u b y - S b u n d l e e x e c z e u s r s p e c s p e c / f e a t u r e s / s e s s i o n s _ s p e c . r b
reloading /Users/libardoalexis/Library/Application Support/Sublime Text 2/Packages/User/RubyTest.last-run
My project is working with:
ruby '2.2.0'
gem 'rails', '4.2.0'
I made a copy of the RubyTest settings on the folder indicated (~/Path/To/Sublime/Packages/User/) and looks like:
I am using Zeus as my terminal and the ouput when I hit cmd + shift + T on a file like:
require 'rails_helper'
describe 'Session feature:' do
let(:user) { create(:user) }
feature 'Login' do
scenario 'with valid email and password' do
sign_in user.email, 'password'
expect(page).to have_content(user.full_name)
end
scenario 'with invalid email' do
sign_in user.email, 'notmypassword'
expect(current_path).to eq(new_user_session_path)
end
end
feature 'Log out' do
scenario 'by clicking navigation button' do
sign_in user.email, 'password'
click_button 'Log out'
expect(current_path).to eq(new_user_session_path)
end
end
end
is:
bundler: command not found: zeus
Install missing gem executables with `bundle install`
[Finished in 1.2s with exit code 127]
And of course I have run my bundle install before and again and everything looks OK. please sorry about this, it may be something that I did wrong? Or just because I am using capybara too?
As fallback I tried with the default settings and it just say rspec command not found... so I don't know what more can I do.
I am starting with Rspec and I want to have something just like this plugin, however I can not be able to make it work. please below I provide all the info regarding this issue:
Log shows just:
My project is working with:
I made a copy of the RubyTest settings on the folder indicated (~/Path/To/Sublime/Packages/User/) and looks like:
I am using Zeus as my terminal and the ouput when I hit
cmd + shift + T
on a file like:is:
And of course I have run my bundle install before and again and everything looks OK. please sorry about this, it may be something that I did wrong? Or just because I am using capybara too?
As fallback I tried with the default settings and it just say
rspec command not found
... so I don't know what more can I do.Thanks in advance. Nice plugin!