Adding and pushing to git
git add . Â (adds all files to commit)
git commit -m "useful message describing what you did"
git push origin master
Or useÂ
git commit -a -m 'added new benchmarks'
to add and commit all files, with the message

Product Placement
will byers stan first human second

pixel skylines
Jules of Nature

if i look back, i am lost
ojovivo

JVL
Lint Roller? I Barely Know Her

bliss lane

Andulka
Sade Olutola
tumblr dot com
Noah Kahan
Not today Justin

oozey mess

tannertan36
Keni

seen from Romania

seen from Malaysia
seen from United States

seen from Morocco

seen from Poland
seen from Kosovo
seen from Venezuela
seen from Bangladesh
seen from Venezuela

seen from United States
seen from Venezuela
seen from Bangladesh
seen from Canada
seen from United States

seen from Malaysia
seen from United States
seen from Brazil
seen from United States

seen from United States

seen from United States
@cookhappy
Adding and pushing to git
git add . Â (adds all files to commit)
git commit -m "useful message describing what you did"
git push origin master
Or useÂ
git commit -a -m 'added new benchmarks'
to add and commit all files, with the message

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Creating links in Rails
Instead of <a> tags use:
<%= link_to "Text_for_link", "URL" %>
Example of internal link:
<%= link_to "Home", "/" %> Â this is to root page <%= link_to "About", "/about" %>
Example of external link:
<%= link_to "Facebook", "http://facebook.com" %>
Change route to different name/style
In routes.rb, changeÂ
get 'controller/action'
get 'pages/about'
to
get "url_ending_you_want" => 'pages#about'
for example:
get "about" => 'pages#about'
Change the root of your site
In routes.rb use:
root to: 'controller#action_name'Â
root to: 'controller#page'
for example:
root to: 'pages#home'
Create pages with a pages controller
You can use:
rails generate controller [Name] [action action, etc]Â
For example:
rails generate controller Pages about homeÂ

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Upgrading Ruby with rvm
UseÂ
rvm install [version you want]
for example:
rvm install 2.1.1
How to start a new Rails project
UseÂ
rails new project_name
You don't need to make a new directory/folder beforehand because this command will create one with the same name as your project. But if you do have a folder already that you want to use, then just make your project the same name and rails will recognize it exists already.
Btw, you can make a new directory/folder with
mkdir directory_name
Or if you need to specify a place within other folders:
mkdir folder/directory_name