Bumped VERSION to 0.1.4

Updated CHANGELOG
* Added postgresql spec configuration
* Using database_cleaner gem from master branch
This commit is contained in:
Cesidio Di Landa
2013-04-20 12:58:42 +02:00
parent 197c6c3212
commit 7eaa45fe41
5 changed files with 29 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
RSpec.configure do |config|
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
end
config.before(:each) do
DatabaseCleaner.start
end
config.after(:each) do
DatabaseCleaner.clean
end
end