public
Description: Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing.
Homepage: http://gemcutter.org/gems/database_cleaner
Clone URL: git://github.com/bmabey/database_cleaner.git
database_cleaner / History.txt
100644 42 lines (30 sloc) 1.178 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
0.2.x (In Git)
 
== 0.2.3 2009-05-30
 
 === New features
  * Support for SQL Server truncation (Adam Meehan)
 
== 0.2.2 2009-05-08
 === Bufixes
  * Added proper gemspec description and summary. (Ben Mabey, thanks to Martin Gamsjaeger)
 
 === New features
 
== 0.2.1 2009-05-08
 === Bufixes
  * Removed extraneous TruncationBase class definition. (Ben Mabey)
 
== 0.2.0 2009-05-08 - The Datamapper Release
 
 === New features
  * DataMapper strategies (Martin Gamsjaeger)
    * Transaction
    * Truncation - working SQLite3, MySQL adapters. Experimental Postgres adapter (not tested).
 
== 0.1.3 2009-04-30
 
 === New features
  * PostgresSQLAdapter for AR to support the truncation strategy. (Alberto Perdomo)
 === Bufixes
  * Added missing quotes around table names in truncation calls. (Michael MacDonald)
 
== 0.1.2 2009-03-05
 === New features
  * JDBC Adapter to enable AR truncation strategy to work. (Kamal Fariz Mahyuddin)
 
== 0.1.1 2009-03-04 - Initial Release (Ben Mabey)
  * Basic infrastructure
  * Features, RSpec code examples
  * ActiveRecord strategies
    * Truncation - with MySQL, and SQLite3 adapters.
    * Transaction - wrap your modifications and roll them back.