Commit 70f6e37b by Ben A. Morgan Committed by GitHub

Merge pull request #343 from rubysherpas/rails-5

Rails 5
parents a21cf4d2 d1d854e0
...@@ -20,24 +20,18 @@ For Rails 3, please use version 1 of Paranoia: ...@@ -20,24 +20,18 @@ For Rails 3, please use version 1 of Paranoia:
gem "paranoia", "~> 1.0" gem "paranoia", "~> 1.0"
``` ```
For Rails 4, please use version 2 of Paranoia: For Rails 4 or 5, please use version 2 of Paranoia:
``` ruby ``` ruby
gem "paranoia", "~> 2.0" gem "paranoia", "~> 2.0"
``` ```
For Rails 5, please use the "core" branch of Paranoia: Of course you can install this from GitHub as well from one of these examples:
``` ruby ``` ruby
gem 'paranoia', github: 'rubysherpas/paranoia', branch: 'core' gem "paranoia", github: "rubysherpas/paranoia", branch: "rails3"
``` gem "paranoia", github: "rubysherpas/paranoia", branch: "rails4"
gem "paranoia", github: "rubysherpas/paranoia", branch: "rails5"
Of course you can install this from GitHub as well:
``` ruby
gem "paranoia", :github => "rubysherpas/paranoia", :branch => "rails3"
# or
gem "paranoia", :github => "rubysherpas/paranoia", :branch => "rails4"
``` ```
Then run: Then run:
...@@ -53,7 +47,7 @@ Updating is as simple as `bundle update paranoia`. ...@@ -53,7 +47,7 @@ Updating is as simple as `bundle update paranoia`.
Run: Run:
``` shell ``` shell
rails generate migration AddDeletedAtToClients deleted_at:datetime:index bin/rails generate migration AddDeletedAtToClients deleted_at:datetime:index
``` ```
and now you have a migration and now you have a migration
......
module Paranoia module Paranoia
VERSION = "2.2.0.alpha" VERSION = "2.2.0.pre"
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment