Creating the Blog Application
For creating this application you must install Ruby on Rails on your system and also install the database to add the backend for your applicaton.
Click here for installing Ruby on Rails and MySQL Database.
Follow the steps for creating your blog application in Ruby on Rails :
- Open a terminal, navigate to a folder where you have rights to create files, and type :
$ rails blog -d mysql
-d mysql option create database with MySQL connectivity.
- Now move to blog folder using :
$ cd blog
- Database Configuration
Open the database.yml file to edit the database settings.
For this enter following commands in terminal:$ cd config/
$ gedit database.ymlReplace username and password with your MySQL Username and password.
Update these changes in all three sections : development, test and production.After saving these changes, run this command in terminal:
$ cd .. - Database Creation
Run the following command in terminal to create database :
$ rake db:create
- Starting up Web Server
Run this command in terminal to run default webpage in browser:
$ script/server
- Creating Controller
Run this command in terminal:
ruby script/generate controller home index
- Edit Home Page
Open app/views/home/index.html.erb file. Run these commands in terminal:
$ cd app/views/home/
$ gedit index.html.erbAdd following line and Save the file.(You can also delete the previous text)
<h1>Hello Rails !</h1>
- Remove index.html from public folder
$ cd
$ cd Desktop/blog
$ rm pulic/index.html - Setting the Application Home Page
Open routes.rb file.
$ gedit config/routes.rbFind the line beginning with root :root and uncomment it.
Replace that line with this :map:root :controller => ‘home’, :action => ‘index’
Now save that file and if you navigate to http://localhost:3000 in your browser, you’ll see the home/index view.
- Creating a Resource
In the case of the blog application, you can start by generating a scaffolded Post resource. To do this, enter this command in your terminal:
$ script/generate scaffold Post name:string title:string content:text
- Running a Migration
Use following command to create tables:
$ rake db:migrate
- Add a Link
Open index.html.erb file to add link to My Blog page.
$ cd app/views/home/index.html.erb
Add this line at last,
<%= link_to “My Blog”, posts_path %>
and save the file.
The link_to method is one of Rails’ built-in view helpers. It creates a hyperlink based on text to display and where to go – in this case, to the path for posts.
- Test Your Blog Application
$ script/server
Now open http://localhost:3000/ in browser.
By these steps your blog is created and if you find any error then feel free to ask and share it through comments.
Leave a Reply