Skip to content

Latest commit

 

History

History
422 lines (292 loc) · 12.9 KB

2012-04-18-app.markdown

File metadata and controls

422 lines (292 loc) · 12.9 KB
layout title permalink
default
Rails Girls App Tutorial
app

Rails Girls App Tutorial

Created by Vesa Vänskä, @vesan

Make sure you have Rails installed. Follow the installation guide to get set up.

Get to know the tools

 

### Text Editor

Sublime Text, Komodo Edit, Vim, Emacs, and Gedit are examples of text editors your can use for writing code and editing files.

 

### Terminal (known as Command Prompt on Windows) Where you start the rails server and run commands.

 

### Web browser (Firefox, Safari, Chrome) for viewing your application.

Important

It is important that you select the instructions specific to your operating system - the commands you need to run on a Windows computer are slightly different to Mac or Linux. If you're having trouble check the Operating System switcher at the bottom of the commands.

*1.*Creating the application

We're going to create a new Rails app called railsgirls.

First, let's open a terminal:

  • Mac OS X: Open Spotlight, type Terminal and click the Terminal application.
  • Windows: Click Start and look for Command Prompt, then click Command Prompt with Ruby on Rails.
  • Linux (Ubuntu/Fedora): Search for Terminal on the dash and click Terminal.

Next, type these commands in the terminal:

{% highlight sh %} mkdir projects {% endhighlight %}
<div>

You can verify that a directory named projects was created by running the list command: ls. You should see the projects directory in the output. Now you want to change the directory you are currently in to the projects folder by running:

{% highlight sh %} cd projects {% endhighlight %}

<div>

You can verify you are now in an empty directory or folder by again running the ls command. Now you want to create a new app called railsgirls by running:

{% highlight sh %} rails new railsgirls {% endhighlight %}

<div>

This will create a new app in the folder railsgirls, so we again want to change the directory to be inside of our rails app by running:

{% highlight sh %} cd railsgirls {% endhighlight %}

<div>

If you run ls inside of the directory you should see folders such as app and config. You can then start the rails server by running:

{% highlight sh %} rails server {% endhighlight %}

{% highlight sh %} mkdir projects {% endhighlight %}
<div>

You can verify that a directory named projects was created by running the list command: dir. You should see the projects directory in the output. Now you want to change the directory you are currently in to the projects folder by running:

{% highlight sh %} cd projects {% endhighlight %}

<div>

You can verify you are now in an empty directory or folder by again running the dir command. Now you want to create a new app called railsgirls by running:

{% highlight sh %} rails new railsgirls {% endhighlight %}

<div>

This will create a new app in the folder railsgirls, so we again want to change the directory to be inside of our rails app by running:

{% highlight sh %} cd railsgirls {% endhighlight %}

<div>

If you run dir inside of the directory you should see folders such as app and config. You can then start the rails server by running:

{% highlight sh %} ruby bin\rails server {% endhighlight %}

Windows users: You may need to replace bin\rails with script\rails, depending on the version of Rails you have installed.

Open http://localhost:3000 in your browser. You should see "Welcome aboard" page, which means that the generation of your new app worked correctly.

Notice in this window the command prompt is not visible because you are now in the Rails server, the command prompt looks like this:

{% highlight sh %} $ {% endhighlight %}
{% highlight sh %} > {% endhighlight %}

When the command prompt is not visible you cannot execute new commands. If you try running cd or another command it will not work. To return to the normal command prompt:

Hit CTRL-C in the terminal to quit the server.

Coach: Explain what each command does. What was generated? What does the server do?

*2.*Create Idea scaffold

We're going to use Rails' scaffold functionality to generate a starting point that allows us to list, add, remove, edit, and view things; in our case ideas.

Coach: What is Rails scaffolding? (Explain the command, the model name and related database table, naming conventions, attributes and types, etc.) What are migrations and why do you need them?

{% highlight sh %} rails generate scaffold idea name:string description:text picture:string {% endhighlight %}
{% highlight sh %} rails generate scaffold idea name:string description:text picture:string {% endhighlight %}

The scaffold creates new files in your project directory, but to get it to work properly we need to run a couple of other commands to update our database and restart the server.

{% highlight sh %} rake db:migrate rails server {% endhighlight %}
{% highlight sh %} rake db:migrate ruby bin\rails server {% endhighlight %}

Open http://localhost:3000/ideas in your browser. Click around and test what you got by running these few command-line commands.

Hit CTRL-C to quit the server again when you've clicked around a little.

*3.*Design

Coach: Talk about the relationship between HTML and Rails. What part of views is HTML and what is Embedded Ruby (ERB)? What is MVC and how does this relate to it? (Models and controllers are responsible for generating the HTML views.)

The app doesn't look very nice yet. Let's do something about that. We'll use the Twitter Bootstrap project to give us nicer styling really easily.

Open app/views/layouts/application.html.erb in your text editor and above the line

{% highlight erb %} <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %> {% endhighlight %}

add

{% highlight erb %}

{% endhighlight %}

and replace

{% highlight erb %} <%= yield %> {% endhighlight %}

with

{% highlight erb %}

<%= yield %>
{% endhighlight %}

Let's also add a navigation bar and footer to the layout. In the same file, under <body> add

{% highlight html %}

Toggle navigation The Idea app
{% endhighlight %}

and before </body> add

{% highlight html %}

Rails Girls 2013
<script src="//railsgirls.com/assets/bootstrap.js"></script> {% endhighlight %}

Now let's also change the styling of the ideas table. Open app/assets/stylesheets/application.css and at the bottom add

{% highlight css %} body { padding-top: 100px; } footer { margin-top: 100px; } table, td, th { vertical-align: middle !important; border: none !important; } th { border-bottom: 1px solid #DDD !important; } {% endhighlight %}

Now make sure you saved your files and refresh the browser to see what was changed. You can also change the HTML & CSS further.

Coach: Talk a little about CSS and layouts.

Step 4: Adding picture uploads

We need to install a piece of software to let us upload files in Rails.

Open Gemfile in the project directory using your text editor and under the line

{% highlight ruby %} gem 'sqlite3' {% endhighlight %}

add

{% highlight ruby %} gem 'carrierwave' {% endhighlight %}

Coach: Explain what libraries are and why they are useful. Describe what open source software is.

In the terminal run:

{% highlight sh %} bundle {% endhighlight %}

Now we can generate the code for handling uploads. In the terminal run:

{% highlight sh %} rails generate uploader Picture {% endhighlight %}

At this point you need to restart the Rails server process in the terminal.

Hit CTRL-C in the terminal to quit the server. Once it has stopped, you can press the up arrow to get to the last command entered, then hit enter to start the server again.

This is needed for the app to load the added library.

Open app/models/idea.rb and under the line

{% highlight ruby %} class Idea < ActiveRecord::Base {% endhighlight %}

add

{% highlight ruby %} mount_uploader :picture, PictureUploader {% endhighlight %}

Open app/views/ideas/_form.html.erb and change

{% highlight erb %} <%= f.text_field :picture %> {% endhighlight %}

to

{% highlight erb %} <%= f.file_field :picture %> {% endhighlight %}

Sometimes, you might get an TypeError: can't cast ActionDispatch::Http::UploadedFile to string.

If this happens, in file app/views/ideas/_form.html.erb change the line

{% highlight erb %} <%= form_for(@idea) do |f| %> {% endhighlight %}

to

{% highlight erb %} <%= form_for @idea, :html => {:multipart => true} do |f| %> {% endhighlight %}

In your browser, add new idea with a picture. When you upload a picture it doesn't look nice because it only shows a path to the file, so let's fix that.

Open app/views/ideas/show.html.erb and change

{% highlight erb %} <%= @idea.picture %> {% endhighlight %}

to

{% highlight erb %} <%= image_tag(@idea.picture_url, :width => 600) if @idea.picture.present? %> {% endhighlight %}

Now refresh your browser to see what changed.

Coach: Talk a little about HTML.

Step 5: Finetune the routes

If you try to open http://localhost:3000 it still shows the "Welcome aboard" page. Let's make it redirect to the ideas page.

Open config/routes.rb and after the first line add

{% highlight ruby %} root :to => redirect('/ideas') {% endhighlight %}

Test the change by opening the root path (that is, http://localhost:3000/) in your browser.

Coach: Talk about routes, and include details on the order of routes and their relation to static files.

Rails 3 users: You will need to delete the index.html from the /public/ folder for this to work.

Create static page in your app

Lets add a static page to our app that will hold information about the author of this application — you!

{% highlight sh %} rails generate controller pages info {% endhighlight %}

This command will create you a new folder under app/views called /pages and under that a file called info.html.erb which will be your info page.

It also adds a new simple route to your routes.rb.

{% highlight ruby %} get "pages/info" {% endhighlight %}

Now you can open the file app/views/pages/info.html.erb and add information about you in HTML and then take your browser to http://localhost:3000/pages/info to see your new info page.

What next?

  • Add design using HTML & CSS
  • Add ratings
  • Use CoffeeScript (or JavaScript) to add interaction
  • Add picture resizing to make loading the pictures faster

Additional Guides