So very new to rails. I managed to install ruby and then rails framework on Fedora 17.
Here are the summary of steps I did to install ruby and rails framework:
yum install make openssh-clients gcc libxml2 libxml2-devel libxslt libxslt-devel python-devel
sudo bash -s stable < <(curl -sk https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
source /etc/profile.d/rvm.sh
rvm install ruby-1.9.2-p290 --with-openssl
rvm use ruby-1.9.2-p290 --default
rvm all do gem update --system
rvm all do gem install rails
Well.. So far so good.. Just wanted to test if the installation was perfect. I created a hello world sample (test.rb) to test ruby installation
#!/usr/bin/env ruby
puts "hello World"
and running this with ./test.rb
it works fine.
Now when I was test rails framework installation by creating a new project using
rails new demo
I receive the error
Fetching gem metadata from https://rubygems.org/.Unfortunately, a fatal error has occurred. Please see the Bundler
troubleshooting documentation at http://bit.ly/bundler-issues. Thanks!
What am I missing here? Or what have I done additionally which I was not suppose to do? Looked into https://github.com/carlhuda/bundler/blob/master/ISSUES.md. Could not figure out. Has anyone come across similar issue and found a way to deal with it?