-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrades dependencies #108
base: master
Are you sure you want to change the base?
Conversation
@@ -1,5 +1,6 @@ | |||
require 'tty-table' | |||
require 'pastel' | |||
require 'unicode/display_width/string_ext' |
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.
Implement String#display_width
for L#52 (https://github.com/keepcosmos/terjira/pull/108/files#diff-5d863c726df4ed831ad90eb8c126bba58564ecfb6d8ae5889ab0686f58e51edfR53)
spec.add_dependency "tty-table", ">= 0.12" | ||
spec.add_dependency "tty-prompt", ">= 0.23" | ||
spec.add_dependency "tty-spinner", ">= 0.9" | ||
spec.add_dependency "strings", ">= 0.2" |
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.
Keeps these dependency a little more loose so it allows for easier upgrade next time around. Last merged PR was me, a year ago, for the same reason ;)
@keepcosmos Did you had time to look into this by any chance? |
I was unable to have ruby 3.0 compatibility with my own gem using yours. These updates allowed me to upgrade
pastel
and other gems properly.Tested manually that everything was still working as expected 👍