spec/spec_helper.rb in xway-0.0.1.alpha vs spec/spec_helper.rb in xway-0.0.1.beta

- old
+ new

@@ -1,5 +1,9 @@ +# this must before application code is required +require 'coveralls' +Coveralls.wear! + # This file was generated by the `rspec --init` command. Conventionally, all # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. # Require this file using `require "spec_helper"` to ensure that it is only # loaded once. # @@ -13,5 +17,12 @@ # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = 'random' end + +# just add the lib folder to the load path +# -> actual 'require' calls will be done within each spec (speed + modularity) +lib = File.expand_path('../lib', File.dirname(__FILE__)) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) + +ASSETS_PATH = File.expand_path('assets', File.dirname(__FILE__))