We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I use on my Gemfile gem 'colorist', the version defaults to 0.0.2, wihch gave me problems when using from_string('brown', :x11).
gem 'colorist'
from_string('brown', :x11)
Currently I have to use gem 'colorist', '>= 0.0.3', git: 'https://github.com/mbleigh/colorist.git'
gem 'colorist', '>= 0.0.3', git: 'https://github.com/mbleigh/colorist.git'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I use on my Gemfile
gem 'colorist'
, the version defaults to 0.0.2, wihch gave me problems when usingfrom_string('brown', :x11)
.Currently I have to use
gem 'colorist', '>= 0.0.3', git: 'https://github.com/mbleigh/colorist.git'
The text was updated successfully, but these errors were encountered: