>>>Is Rails considered a gem?
yes
>>>>I know I can use Gem rails (right?)
ummm...I'm not sure what you mean. rake freeze:gems ?
>>>but what if I'm using rails in the vendor/rails directory? Do I freeze rails?
If rails is in rails/vendor that means you have already 'frozen' Rails.
>>> Should I not use vendor/rails (that's called edge rails, right?) Should I not do that?
That is not edge rails. That is frozen rails. And frozen Rails is good.
>>>>Should I use this for rails as well? (i.e. gem install rails -i ~/.gems)?
no - if you want to freeze Rails, ssh into your account and cd /path/to/rails/app then
rake gems:freeze
or for another version besides the most recent stable
rake rails:freeze:edge TAG=rel_1-1-6
or for simply EDGE
rake rails:freeze:edge
>>>>>Or is this command (gem install GEM_NAME -i ~/.gems) just intended to be used for extra gems that are in addition to the rails install?
that is correct.
I hope that all made sense and helps. Let me know if you have other questions.
Cheers,
~William