Skip to content

Commit 2216043

Browse files
committed
Limit activesupport version
1 parent b95fbcf commit 2216043

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Gemfile

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ gem 'simplecov'
77

88
gem 'yard'
99
gem 'markdown'
10+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.2.2")
11+
# NOTE: markdown depends on textutils, and textutils depends on AS.
12+
# AS5 requires Ruby2.2.2 or later.
13+
gem 'activesupport', '< 5'
14+
end
1015

1116
platforms :ruby, :rbx do
1217
gem 'redcarpet'

0 commit comments

Comments
 (0)