firstdraft / appdev_template

A Rails template for generating homework projects
0 stars 1 forks source link

Fix .pryrc printing #138

Closed jelaniwoods closed 4 years ago

jelaniwoods commented 4 years ago

Resolves #137

For some reason Pry::DEFAULT_PRINT is no longer a (public?) constant on Pry. I'm not sure when this change happened, since it still mentions it in the docs as the default value 🤔.

Pry.constants.include? :DEFAULT_PRINTER # => false

Regardless, Pry::ColorPrinter.default performs as expected so I believe this solves the issue.

Screen Shot 2020-05-08 at 4 50 28 PM
raghubetina commented 4 years ago

@jelaniwoods LGTM, thank you