README.md in sequel-rails-0.9.0 vs README.md in sequel-rails-0.9.1
- old
+ new
@@ -1,11 +1,15 @@
-sequel-rails
-============
+# sequel-rails
-[![Build Status](https://travis-ci.org/TalentBox/sequel-rails.png?branch=master)](https://travis-ci.org/TalentBox/sequel-rails)
-[![Code Climate](https://codeclimate.com/github/TalentBox/sequel-rails.png)](https://codeclimate.com/github/TalentBox/sequel-rails)
+[![Gem Version](https://badge.fury.io/rb/sequel-rails.png)][gem]
+[![Build Status](https://secure.travis-ci.org/TalentBox/sequel-rails.png?branch=master)][travis]
+[![Code Climate](https://codeclimate.com/github/TalentBox/sequel-rails.png)][codeclimate]
+[gem]: https://rubygems.org/gems/sequel-rails
+[travis]: http://travis-ci.org/TalentBox/sequel-rails
+[codeclimate]: https://codeclimate.com/github/TalentBox/sequel-rails
+
This gem provides the railtie that allows
[sequel](http://github.com/jeremyevans/sequel) to hook into
[Rails (3.x and 4.x)](http://github.com/rails/rails) and thus behave like a
rails framework component. Just like activerecord does in rails,
[sequel-rails](http://github.com/talentbox/sequel-rails) uses the railtie API to
@@ -171,9 +175,10 @@
locale: en_US.UTF-8 # Optional, equivalent to setting 'collation' and 'ctype' to the same value
collation: en_US.UTF-8 # Optional
ctype: en_US.UTF-8 # Optional
template: template1 # Optional
tablespace: non_default_tablespace_name # Optional
+ max_connections: 20 # Optional, also accept 'pool' as key, if both are present 'max_connections' is used (default to nil, Sequel default is 4)
```
2. For MySQL:
```yaml