I have Ruby 1.9.3 installed. When I tried doing the exercises, I kept getting this error:
/Users/stevenjli/Documents/App Academy/learn_ruby-master/00_hello/hello_spec.rb:116:in `require': cannot load such file
I asked around StackExchange, where the posters suggested that "require" might be the issue. Namely, because I'm using Ruby 1.9.3, the "require" needs to be changed to "require_relative." They were right. I went through every spec.rb file and changed "require" to "require_relative" and this got things working.
I have Ruby 1.9.3 installed. When I tried doing the exercises, I kept getting this error:
/Users/stevenjli/Documents/App Academy/learn_ruby-master/00_hello/hello_spec.rb:116:in `require': cannot load such file
I asked around StackExchange, where the posters suggested that "require" might be the issue. Namely, because I'm using Ruby 1.9.3, the "require" needs to be changed to "require_relative." They were right. I went through every spec.rb file and changed "require" to "require_relative" and this got things working.