Reputation: 4692
I'm try to install Redmine . According to the installation guide, the latest(2.1.0) redmine need RubyGem <= 1.8. What does this "<=1.8" mean ? Is it saying you can use any rubygem version of 1.8 serial (e.g., 1.8.23), or that only version below 1.8.0 (e.g., 1.7.0) can be used ?
Upvotes: 1
Views: 734
Reputation: 4692
Just for a reference to those non-ruby guys like me, this page explains what the version number means.
Upvotes: 1
Reputation: 426
RubyGems is a package management framework for Ruby.
This gem is an update for the RubyGems software. You must have an installation of RubyGems before this update can be applied.
Check which version you are using:gem -v
Update your RubyGems version:
gem update --system
NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no rubygems-update installed. You will need to use the following instructions if you see Nothing to update. If you have an older version of RubyGems installed, then you can still do it in two steps:
gem install rubygems-update
update_rubygems
Upvotes: 0