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