From 2a32e47cc49d92e977760f1491b290d2f1291f6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Sat, 25 Feb 2017 11:01:36 -0300 Subject: [PATCH] Clarify installation instructions --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 700fa36..a98c325 100644 --- a/README.md +++ b/README.md @@ -107,13 +107,20 @@ Decorators are the ideal place to: ## Installation -Add Draper to your Gemfile: +Add Draper to your Gemfile. If you're using `Rails 5`, use the `3.0.0` version +pre-release + +```ruby + gem 'draper', '3.0.0.pre1' +``` + +Otherwise, use the latest released version ```ruby gem 'draper' ``` -And run `bundle install` within your app's directory. +After that, run `bundle install` within your app's directory. If you're upgrading from a 0.x release, the major changes are outlined [in the wiki](https://github.com/drapergem/draper/wiki/Upgrading-to-1.0).