README.md in pgdexter-0.3.5 vs README.md in pgdexter-0.3.6
- old
+ new
@@ -1,21 +1,21 @@
# Dexter
The automatic indexer for Postgres
-[Read about how it works](https://medium.com/@ankane/introducing-dexter-the-automatic-indexer-for-postgres-5f8fa8b28f27)
+[Read about how it works](https://ankane.org/introducing-dexter)
[![Build Status](https://travis-ci.org/ankane/dexter.svg?branch=master)](https://travis-ci.org/ankane/dexter)
## Installation
First, install [HypoPG](https://github.com/HypoPG/hypopg) on your database server. This doesn’t require a restart.
```sh
cd /tmp
-curl -L https://github.com/HypoPG/hypopg/archive/1.1.1.tar.gz | tar xz
-cd hypopg-1.1.1
+curl -L https://github.com/HypoPG/hypopg/archive/1.1.3.tar.gz | tar xz
+cd hypopg-1.1.3
make
make install # may need sudo
```
> Note: If you have issues, make sure `postgresql-server-dev-*` is installed.
@@ -226,20 +226,20 @@
- [Report bugs](https://github.com/ankane/dexter/issues)
- Fix bugs and [submit pull requests](https://github.com/ankane/dexter/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
-To get started, run:
+To get started with development, run:
```sh
git clone https://github.com/ankane/dexter.git
cd dexter
-bundle
-rake install
+bundle install
+bundle exec rake install
```
To run tests, use:
```sh
createdb dexter_test
-rake test
+bundle exec rake test
```