I am trying to use Ruby with MySql and two more gems, composite_primary_keys and ActiveRecord, however, I am seeing version compatibility issues. Following are the details of the system and tools versions:
OS: CentOS 4.9
gcc: 3.4.6
mysql: mysql Ver 14.7 Distrib 4.1.22, for redhat-linux-gnu (x86_64) using readline 4.3
ruby: ruby 1.9.3p0 (2011-10-30) [x86_64-linux]
Gems versions:
mysql: 2.8.1
composite_primary_keys: 4.1.1
activerecord: 3.1.3
Is there any documentation that shows a version compatibility chart or something for gems?
Gems has the
gem dependencycommand, which shows what a particular gem expects:You can use
gem dependencyby itself to see all dependencies of all gems if you want to wade through the list.