Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Gemfile for post 2.5 universe
  • Loading branch information
kwerle committed Mar 22, 2021
commit 1c90314d6f00341a0b48a1013e30c533a908af31
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ if RUBY_VERSION && RUBY_VERSION >= "1.9"
gem "ruby-debug-base19x", ">= 0.11.32", :platforms => mries('19')
end

if RUBY_VERSION && RUBY_VERSION >= "2.0"
if RUBY_VERSION && ("2.0".."2.5").include?(RUBY_VERSION)
gem "debase", "~> 0.2", ">= 0.2.2", :platforms => mries('20', '21', '22', '23', '24', '25')
end

if RUBY_VERSION && RUBY_VERSION >= "2.5"
gem "debase", "~> 0.2.4"
end

gemspec

group :development do
Expand Down