From 9976fd85d2f45712b49a19ddc1bf3b75537aec9d Mon Sep 17 00:00:00 2001 From: Eric Proulx Date: Mon, 9 Oct 2023 19:29:37 +0200 Subject: [PATCH] Added Rails 7.1 section in README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b37f12b9f1..b0fe3375f5 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ - [Grape for Enterprise](#grape-for-enterprise) - [Installation](#installation) - [Basic Usage](#basic-usage) +- [Rails 7.1](#rails-71) - [Mounting](#mounting) - [All](#all) - [Rack](#rack) @@ -179,7 +180,7 @@ The maintainers of Grape are working with Tidelift to deliver commercial support ## Installation -Ruby 2.4 or newer is required. +Ruby 2.6 or newer is required. Grape is available as a gem, to install it run: @@ -268,6 +269,10 @@ module Twitter end ``` +## Rails 7.1 + +Grape's [deprecator](https://api.rubyonrails.org/v7.1.0/classes/ActiveSupport/Deprecation.html) will be added to your application's deprecators [automatically](lib/grape/railtie.rb) as `:grape`, so that your application's configuration can be applied to it. + ## Mounting ### All