We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a9ba1f commit 165e9e4Copy full SHA for 165e9e4
Appraisals
@@ -4,14 +4,16 @@ appraise "rails-4-2" do
4
gem "activemodel", "~> 4.2.0"
5
end
6
7
-appraise "rails-5-0" do
8
- gem "railties", "~> 5.0.0"
9
- gem "actionpack", "~> 5.0.0"
10
- gem "activemodel", "~> 5.0.0"
11
-end
+if RUBY_VERSION >= "2.2.2"
+ appraise "rails-5-0" do
+ gem "railties", "~> 5.0.0"
+ gem "actionpack", "~> 5.0.0"
+ gem "activemodel", "~> 5.0.0"
12
+ end
13
-appraise "rails-5-1" do
14
- gem "railties", ">= 5.1.0", "< 5.2"
15
- gem "actionpack", ">= 5.1.0", "< 5.2"
16
- gem "activemodel", ">= 5.1.0", "< 5.2"
+ appraise "rails-5-1" do
+ gem "railties", ">= 5.1.0", "< 5.2"
+ gem "actionpack", ">= 5.1.0", "< 5.2"
17
+ gem "activemodel", ">= 5.1.0", "< 5.2"
18
19
0 commit comments