README.md in sequel-rails-1.1.0 vs README.md in sequel-rails-1.1.1

- old
+ new

@@ -164,10 +164,13 @@ ```ruby # Allowed options: :sql, :ruby. config.sequel.schema_format = :sql + # Allowed options: true, false, default false + config.sequel.allow_missing_migration_files = true + # Whether to dump the schema after successful migrations. # Defaults to false in production and test, true otherwise. config.sequel.schema_dump = true # These override corresponding settings from the database config. @@ -248,15 +251,15 @@ database: db/mydatabase.sqlite # Path to db relative to Rails root ``` For in memory testing: - ```yaml - development: +```yaml + development: adapter: sqlite # Also accept sqlite3 database: ":memory:" - ``` +``` Enabling plugins ================ If you want to enable plugins for all your models, you should use the @@ -410,9 +413,11 @@ * Rolf Timmermans (@rolftimmermans) * Olivier Lacan (@olivierlacan) * Dustin Byrne (@dsbyrne) * Michael Coyne (@mjc-gh) * p-leger (@p-leger) +* Semyon Pupkov (@artofhuman) +* Ben Koshy (@BKSpurgeon) Credits ======= The [dm-rails](http://github.com/datamapper/dm-rails) team wrote most of the original code, I just sequel-ized it, but since then most of it has been either adapted or rewritten.