turingschool-examples / ruby-exercises

A collection of exercises to practice various aspects of Ruby
MIT License
237 stars 767 forks source link

Updated require to require_relative and file structure to pull from lib/ #66

Closed Rostammahabadi closed 4 years ago

Rostammahabadi commented 4 years ago

Within the file ruby-exercises/initialize/test at the top of each of the files it had require './lib/*NAME* which would not run so I changed it to require_relative '../lib/*NAME* for each of the examples