I already used Rails on my machine, but I decided to reinstall it because the gems were acting up because of a special character in my home directory where the gem repository used to be.
So I uninstalled ruby using rubyinstaller's uninstaller, deleted all my gem folders, rubygems etc etc.
Now I set my GEM_HOME path to c:\GemRepository, reinstalled ruby and rubygems and devkit. when I run gem install rails, I get this:
Successfully installed rails-3.1.3
1 gem installed
Installing ri documentation for rails-3.1.3...
file 'lib' not found
Installing RDoc documentation for rails-3.1.3...
file 'lib' not found
If i try to run rails, it says "'rails' is not recognized as an internal or external command, operable program or batch file."
I also tried installing with the -include-dependencies flag, but then I get
Fetching: multi_json-1.0.4.gem (100%)
Fetching: rails-3.1.3.gem (100%)
Successfully installed multi_json-1.0.4
Successfully installed rails-3.1.3
2 gems installed
Installing ri documentation for multi_json-1.0.4...
Installing ri documentation for rails-3.1.3...
file 'lib' not found
Installing RDoc documentation for multi_json-1.0.4...
Installing RDoc documentation for rails-3.1.3...
file 'lib' not found
And again, rails is not recognized as a command. Please, please, help me.