README.md in pact_broker-1.11.1 vs README.md in pact_broker-1.11.2

- old
+ new

@@ -78,11 +78,11 @@ ## Usage ### To have a play around on your local machine -* Install ruby 1.9.3 or later +* Install ruby 1.9.3 or later and bundler >= 1.12.0 as there is currently an issue with [bundler 1.13](https://github.com/bethesque/pact_broker/issues/57) * Run `git clone git@github.com:bethesque/pact_broker.git && cd pact_broker/example` * Run `bundle` * Run `bundle exec rackup -p 8080` * Open [http://localhost:8080](http://localhost:8080) and you should see a list containing the pact between the Zoo App and the Animal Service. * Click on the arrow to see the generated HTML documentation. @@ -93,11 +93,11 @@ ### For reals You can use the [Pact Broker Docker container][docker] or [Terraform on AWS][terraform] or to roll your own... * Create a database using a product that is supported by the Sequel gem (listed on this page http://sequel.jeremyevans.net/rdoc/files/README_rdoc.html). The migrations have been tested on MySQL and PostgreSQL - your milage will vary on other databases. -* __Note:__ It is recommended to use __PostgreSQL__ as it will support JSON search features that are planned in a future release, however MySQL the other well supported database. -* Install ruby 1.9.3 or later +* __Note:__ It is recommended to use __PostgreSQL__ as it will support JSON search features that are planned in a future release, however MySQL the other [semi supported](https://github.com/bethesque/pact_broker/issues/33) database. +* Install ruby 1.9.3 or later and bundler >= 1.12.0 as there is currently an issue with [bundler 1.13](https://github.com/bethesque/pact_broker/issues/57) * Copy the [example](/example) directory to the location you want to install the application. * Modify the config.ru and Gemfile as desired (eg. choose database driver gem, set your database credentials. Use the "pg" gem if using Postgres.) * Please ensure you use `encoding: 'utf8'` in your Sequel options to avoid encoding issues. * For production usage, use a web application server like [Phusion Passenger](https://www.phusionpassenger.com) or [Nginx](http://nginx.org/) to serve the Pact Broker application. * Deploy to your location of choice.