2 dir = Pathname.new(__FILE__).parent
3 $LOAD_PATH.unshift(dir, dir + 'lib', dir + '../lib')
7 gem 'rspec', '>= 1.2.9'
10 Dir[File.join(File.dirname(__FILE__), 'support', '*.rb')].each do |support_file|
14 Spec::Runner.configure do |config|
15 config.mock_with :mocha
16 config.include(FixtureHelpers)
17 config.include(FilesystemHelpers)
20 # We need this because the RAL uses 'should' as a method. This
21 # allows us the same behaviour but with a different method name.