I have MacPorts installed Ruby on Rails, which I update and recycle from yesterday when I want to return to learning this language.
the functions
ruby -v ruby 1.8.7 (2012-02-08 patchlevel 358) [i686-darwin10] rails -v Rails 3.0.3 gem -v 1.8.5
Journey
So far, it has been quite a journey to get Ruby, Rails, and Gems to work on my Mac. Following the tutorial, I decided to install / update the Rails API documents, and I ran into these errors :
Password: NOTE: Gem::SourceIndex.from_installed_gems is deprecated with no replacement. It will be removed on or after 2011-10-01. Gem::SourceIndex.from_installed_gems called from /opt/local/lib/ruby/site_ruby/1.8/rubygems/commands/rdoc_command.rb:58. NOTE: Gem::SourceIndex.installed_spec_directories is deprecated, use Specification.dirs. It will be removed on or after 2011-11-01. Gem::SourceIndex.installed_spec_directories called from /opt/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:47. NOTE: Gem::SourceIndex.from_gems_in is deprecated with no replacement. It will be removed on or after 2011-10-01. Gem::SourceIndex.from_gems_in called from /opt/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:47. NOTE: Gem::SourceIndex
when i made gem server
, the server was started. Therefore, I probably installed the documents a year ago and completely forgot about it.
What can I do to get rid of all these errors? Or can I safely ignore them and continue?
source share