seattlerb / ruby_parser

ruby_parser is a ruby parser written in pure ruby. It outputs s-expressions which can be manipulated and converted back to ruby via the ruby2ruby gem.
http://www.zenspider.com/projects/ruby_parser.html
475 stars 102 forks source link

Use a current version of Rake #317

Closed presidentbeef closed 3 years ago

presidentbeef commented 3 years ago

Rake 13.x is bundled with Ruby now which means using an older version is a pain.

I didn't notice any obvious incompatibilities.

zenspider commented 3 years ago

No... I've not seen any incompatibilities either... I have yet to see a major bump actually break anything so I'm not sure what interpretation of semver they're using.

I've been using ["> xxx", "< 15"] (where xxx should probably unify on 10 at this point) so it can't get too far out of hand but doesn't require bumping every year.

zenspider commented 3 years ago

fixed! thanks!