Ruby on Rails Examples

Subsequent chapters are based on the example given in this chapter. In this example we will create something simple but operational online library system for holding and managing the books.
Now you have to be patient till you go through next few chapters. I'm sure after completing this tutorial you will have complete understanding on Rails.
This application has a basic architecture and will be built using two ActiveRecord models to describe the types of data that is stored:
  • Books, which describes an actual listing.
  • Subject, which is used to group books together.

Workflow for creating Rails applications:

A recommended workflow for creating Rails Application is as follows:
  • Use the rails command to create the basic skeleton of the application.
  • Create a database on the MySQL server to hold your data.
  • Configure the application to know where your database is located and the login credentials for it.
  • Create Rails Active Records ( Models ) because they are the business objects you'll be working with in your controllers.
  • Generate Migrations that makes creating and maintaining database tables and columns easy.
  • Write Controller Code to put a life in your application.
  • Create Views to present your data through User Interface.
So lets start with creating our library application.

Creating an Empty Rails Web Application:

Rails is both a runtime web application framework and a set of helper scripts that automate many of the things you do when developing a web application. In this step, we will use one such helper script to create the entire directory structure and the initial set of files to start our Library System application.
  1. Go into ruby installation directory to create your application.
  2. Run the following command to create a skeleton for library application.
C:\ruby> rails library
This will create a subdirectory for the library application containing a complete directory tree of folders and files for an empty Rails application. Check a complete directory structure of the application. 
Most of our development work will be creating and editing files in thelibrary/app subdirectories. Here's a quick rundown of how to use them:
  • The controllers subdirectory is where Rails looks to find controller classes. A controller handles a web request from the user.
  • The views subdirectory holds the display templates to fill in with data from our application, convert to HTML, and return to the user's browser.
  • The models subdirectory holds the classes that model and wrap the data stored in our application's database. In most frameworks, this part of the application can grow pretty messy, tedious, verbose, and error-prone. Rails makes it dead simple.
  • The helpers subdirectory holds any helper classes used to assist the model, view, and controller classes. This helps to keep the model, view, and controller code small, focused, and uncluttered.

Starting Web Server:

Rails web application can run under virtually any web server, but the most convenient way to develop a Rails web application is to use the built-in WEBrick web server. Let's start this web server and then browse to our empty library application:
This server will be started from the application directory as follows. This runs on port number 3000.
C:\> cd ruby\library 
C:\ruby\library\> ruby script/server
This will start your WEBrick web server.
Now open your browser and browse to http://127.0.0.1:3000. If everything is gone fine then you should see a greeting message from WEBrick otherwise there is something wrong with your setting.

No comments:

Post a Comment

Site Search