1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

update to use bundler to check dependencies and to use RSpec2

This commit is contained in:
Konstantin Shabanov 2011-01-13 13:58:20 +06:00
parent 471b98f147
commit df39cc6506
3 changed files with 65 additions and 85 deletions

View file

@ -1,11 +1,10 @@
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))
$LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
require 'aasm'
require 'spec'
require 'spec/autorun'
require 'rspec'
require 'rspec/autorun'
Spec::Runner.configure do |config|
RSpec.configure do |config|
end