This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add upper bound for Rack so Lita will still work with Ruby < 2.2.
- Loading branch information
fda3a80
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jimmycuadra Is this limitation truly necessary? I've just had to fork lita to get it to work with Rails 5 (because its
actionpack
requiresrack
~> 2.0
). Wouldn't leaving the upper-bound out cause whoever is installing the gem to use a lower version ofrack
(since rack > 2 specifiess.required_ruby_version = '>= 2.2.2'
)?fda3a80
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it seems to be necessary. Rack > 2 specifying a newer version of Ruby did not seem to prevent it from being installed on older Ruby versions.