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
Line 28:
installed_gems = Gem::SourceIndex.from_installed_gems.gems.map{|k,v|v}
gives a rubygems deprecation warning with rubygems 1.8.10
As far as I found out, this helps:
installed_gems = Gem::Specification
The best would be to test against the rubygems version and use either on or the other.
The text was updated successfully, but these errors were encountered:
Thanks... I'll work on that this weekend.
Rich
On Thu, Oct 27, 2011 at 12:59 PM, Thomas Volkmar Worm < [email protected]>wrote:
Line 28: installed_gems = Gem::SourceIndex.from_installed_gems.gems.map{|k,v|v} gives a rubygems deprecation warning with rubygems 1.8.10 As far as I found out, this helps: installed_gems = Gem::Specification The best would be to test against the rubygems version and use either on or the other. Reply to this email directly or view it on GitHub: https://github.com/manalang/bdoc/issues/9
Reply to this email directly or view it on GitHub: https://github.com/manalang/bdoc/issues/9
Sorry, something went wrong.
No branches or pull requests
Line 28:
gives a rubygems deprecation warning with rubygems 1.8.10
As far as I found out, this helps:
The best would be to test against the rubygems version and use either on or the other.
The text was updated successfully, but these errors were encountered: