I am really trying to learn Ruby, RoR and proper BDD and just getting my feet wet with starting to learn Rspec. I am going through the Rspec tutorial at codeschool (along with Rspec tutorial from Nettuts among a few others). Every time I try to get Rspec running I keep getting the following errors. I have googled most of the lines to see what I need to edit and have even haven't gotten even further confused!! I searched through threads, uninstalled RVM and re-installed RVM, installed the rspec gem in the project folder and as I follow the various tuts I can't get past through the first steps to see the test fail! I am going bonkers on this issue. I want to learn and wonder if anyone can give me some feedback on my idiot noob question. Yes I am a stupid noob but I want to figure this out.
rspec /home/username/Desktop/zombie/spec/lib/zombie_spec.rb
/home/mike/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot load such file -- spec_helper (LoadError)
from /home/username/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
from /home/username/Desktop/zombie/spec/lib/zombie_spec.rb:1:in `<top (required)>'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/configuration.rb:1105:in `load'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/configuration.rb:1105:in `block in load_spec_files'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/configuration.rb:1105:in `each'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/configuration.rb:1105:in `load_spec_files'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/runner.rb:96:in `setup'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/runner.rb:84:in `run'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/runner.rb:69:in `run'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/lib/rspec/core/runner.rb:37:in `invoke'
from /home/username/.rvm/gems/ruby-2.2.0/gems/rspec-core-3.1.7/exe/rspec:4:in `<top (required)>'
from /home/username/.rvm/gems/ruby-2.2.0/bin/rspec:23:in `load'
from /home/username/.rvm/gems/ruby-2.2.0/bin/rspec:23:in `<main>'
from /home/username/.rvm/gems/ruby-2.2.0/bin/ruby_executable_hooks:15:in `eval'
from /home/username/.rvm/gems/ruby-2.2.0/bin/ruby_executable_hooks:15:in `<main>'
Thanks so much. Another rookie noob just trying to make sense of Ruby and rspec.. mcsmythe