-
Install curl
If you are running Ubuntu or any debian based distro run
sudo apt-get install curl -
Install rvm then ruby
NB: Don't forget to install the keys from https://rvm.io otherwise this won't work
`$ gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB`
`$ \curl -L https://get.rvm.io | bash -s stable --ruby`
-
Run command as login
Follow this link to enable this feature then restart your terminal before proceeding
-
Install nodejs
sudo apt-get install nodejs -
Install nokogiri and bundler gems
rvm gemset listconfirm that global and default gemsets are present
rvm gemset use global$ echo "gem: --no-document" >> ~/.gemrcgem install bundlergem install nokogiri -
If you planing on using postgresql on local machine
sudo apt-get install libpq-devgem install pg -
Install rails
gem install rails -
Create new rails application
Create directory to hold your code
mkdir codecd into the directory
cd codemkdir myappcd myapprvm use ruby-2.x.x@rails5.0 --ruby-version --createCreate new rails app
rails new .
We can use a version that is already setup with plugins necessary to kick us off
On your command prompt run the following command
curl http://j.mp/spf13-vim3 -L -o - | sh
For more on customization and how to setup more plugins visit the official site here
Be patient while vim installs
If you do not have prior experience with vim, type vimtutor on your terminal to have a brief
interactive tutorial