`

(转)Creating a Ruby Weblog in 10 Minutes

    博客分类:
  • RoR
阅读更多

Creating a Ruby Weblog in 10 Minutes

June 2007 [Revision number: V6.0-2]    

This tutorial describes how to create a blog in less than 10 minutes. This tutorial runs with NetBeans IDE 6.0 (M10) with Ruby support.

Contents

Tutorial Requirements
Setting Up
Creating the Ruby on Rails Project
Configuring the Database
Creating the Model
Using a Scaffold
Migrating Forward
Making the List Look More Like a Blog

Tutorial Requirements

This tutorial requires the following software:

Setting Up

  • Copy the derbyclient.jar (jdk1.6.0_home/db/lib/derbyclient.jar) into your jruby lib directory (NetBeans_install_dir/ruby1/jruby-1.0/lib).

Creating the Ruby on Rails Project

  1. In the NetBeans IDE, choose File > New Project.
  2. Select Ruby in the Categories field and Ruby on Rails Application in the Projects field and click Next.
  3. Type RubyWebLog in the Project Name field and click Finish.
  4. Explore the Projects window. As shown in the following figure, the Projects window groups items by category. Expand each of the nodes to see what type goes in each category.

    Figure 1: Projects Window Showing RubyWebLog application

Configuring the Database

  1. In the Projects window, expand the Configuration node.
  2. Open database.yml.
  3. In database.yml, delete the default database configuration under development: and replace it with the following configuration:

    Code Sample 1: Development Database Configuration in database.yml
      adapter: jdbc
      driver: org.apache.derby.jdbc.ClientDriver
      url: jdbc:derby://localhost:1527/sample
      username: app
      password: app

    Make sure that you use the correct format shown in Code Sample 1. If you use tabs, you might encounter an error when you migrate the database.
  4. Open environment.rb and insert the following code above the line that reads Rails::Initializer.run do |config|:

    Code Sample 2: Ruby Code
    if RUBY_PLATFORM =~ /java/
      require 'rubygems'
      RAILS_CONNECTION_ADAPTERS = %w(jdbc)
    end

  5. Open the Services Window, expand the Databases node and check if the Sample {app on APP] database is connected.

    If the jdbc node for the Sample database's badge is broken, the IDE is not connected to the database. To connect to the Sample database, right-click the jdbc node for Sample and choose Connect from the pop-up menu. If the Connect dialog box appears, enter app for the Password, select Remember Password During This Session, and click OK.

Creating the Model

In this section you use the Rails Generator to create a migration. A migration is a way of using versioning to track the changes to your database.

  1. Switch back to the Projects window, right-click the Models node, and choose Generate.
  2. In the Rails Generator dialog box, type Post in the Arguments field and click OK.

    A migration, 001_create_posts.rb, is created for you as part of the model generation:

    Figure 2: Rails Generator Output

  3. Expand the Database Migrations > migrate node and open 001_create_posts.rb.
  4. Add the title column (shown in bold) to the up method as shown in the following figure:

    Code Sample 3: Code for 001_create_posts.rb
    class CreatePosts < ActiveRecord::Migration
      def self.up
        create_table :posts do |t|
          t.column "title", :string
        end
      end
    
      def self.down
        drop_table :posts
      end
    end

    The self.up method executes when you run the database migration. The self.down method runs when you stop the database. The self.down method rolls the database back to a previous version.

  5. In the Projects window, right-click the RubyWebLog node and choose Migrate Database > To Current Version.

    This action runs the database migration. The output window indicates when CreatePosts has been migrated. Following are corrections for some common errors:

  6. Switch to the Services window and expand the jdbc > Tables node to see the generated posts table and associated schema_info table.

    If you do not see the new entries, right-click the Tables node and choose Refresh.

    Figure 5: Generated Post Table

Using a Scaffold

In this section, you use the Ruby on Rails scaffold feature. Scaffolding provides the basic interface for creating, editing, viewing, and destroying entries in the blog.

  1. Switch back to the Projects window, right-click the Controllers node and choose Generate.

  2. In the Rails Generator dialog box, type Blog in the Name field. Leave the Views field blank. Click OK.
  3. Add the following code, which provides a simple CRUD application around the model, to blog_controller.rb:

    Code Sample 4: Code for blog_controller.rb
    class BlogController < ApplicationController
      scaffold :post
    end

  4. Under the Configuration node, open routes.rb and add the following code before the final end statement:

    map.connect '', :controller => "blog"
    	
  5. Expand the Public node and delete index.html.

    Now the blog loads automatically when you run the application.
  6. Click the Run Main Project button in the toolbar to start the WEBrick server and launch the browser.

    Following is the first page of the application.

    Listing Posts
  7. Click New post.

    First Entry Post
  8. Enter a title and click Create.

    Following is an example blog listing.

    Listing First Entry

Migrating Forward

Here you change your data model by adding another migration, which adds a body to the editing page.

  1. Right-click the Database Migrations node and choose Generate. In the Rails Generator dialog box, type AddBody in the Arguments field and click OK.

    Ruby creates a versioned migration script called 002_add_body.rb.

  2. Modify 002_add_body.rb as follows:

    Code Sample 5: Code for 002_add_body.rb
    class AddBody < ActiveRecord::Migration
      def self.up
        add_column 'posts', 'body', :text
      end
    
      def self.down
        remove_column 'posts', :body
      end
    end
    
  3. Right-click the RubyWebLog node and choose Migrate Database > To Current Version.

  4. Return to the browser and click the Edit link to see how Ruby recognizes the new body field.

    New Body Field

  5. Click Back to return to the Listing Posts page and create a few more blog entries. For example:

    More Blog Entries

Making the List Look More Like a Blog

This far, scaffolding has created a basic CRUD application that enables you to easily test the model. Here you generate scaffolding that you use as a base for modifying your user interface.

  1. In the Projects window, right-click the Views node and choose Generate.
  2. In the Rails Generator dialog box, choose scaffold from the Generate drop-down list.
  3. Type Post in the Model Name field and Blog in the Controller Name field. Leave the Actions field blank. Click OK.
  4. Expand Views > blog and open list.rhtml. Delete the <h1> and <table> tags and replace them with the following code:

    Code Sample 6: Code for list.rhtml
    <h1>The Ruby Blog</h1>
    
    <% @posts.each do |post| %>
      <h2><%= post.title %></h2>
      <p><%= post.body %></p>
      <small> <%= link_to 'Permalink', :action => 'show', :id => post %></small>
      <hr>
    <% end %>
  5. Save list.rhtml and refresh your browser.


  6. To display the blog with the most recent entry first, reverse the sort order by adding .reverse to the end of @posts in list.rhtml:

    	  <% @posts.reverse.each do |post| %>
    	  

    When you save the file and refresh your browser, the blog displays as follows:

评论

相关推荐

    weblog, A simple blog system written in Flask..zip

    《基于Flask构建的简单博客系统——weblog详解》 Flask是一款轻量级的Python Web框架,以其简洁明了的API和灵活的扩展性深受开发者喜爱。在本篇文章中,我们将深入探讨一个名为"weblog"的开源项目,这是一个完全...

    WebLog Expert Lite

    《WebLog Expert Lite:深入解析Web日志分析工具》 WebLog Expert Lite是一款专为WebLogic服务器设计的日志分析工具,旨在帮助用户轻松理解和解析Web服务器产生的日志数据。这款小工具虽然轻量级,但在功能上却丝毫...

    WebLog Expert Lite v7.0

    WebLog Expert是一款专门用来对繁杂的WEB服务器日志文件进行综合分析的软件,可以对你网站的来访者进行详细统计:当前活动会话统计、文件存取统计、搜索使用情况统计、浏览器/操作系统统计、错误统计等。通过HTML...

    Rails-Blog:一个用Ruby on Rails编写的简单Weblog应用程序

    Rails博客这是一个用Ruby on Rails编写的简单Weblog应用程序。这个项目的目的是让我学习一些基本的Web开发原理,以及学习如何使用Ruby语言和Rails框架。它所基于的教程可以在找到。该自述文件通常会记录启动和运行...

    WebLog Expert v4.2

    一款专门用来对繁杂的WEB服务器日志文件进行综合分析的软件,可以对你网站的来访者进行详细统计:当前活动会话统计、文件存取统计、搜索使用情况统计、浏览器/操作系统统计、错误统计等。通过HTML形式的表格和图表...

    WeBlog-毕业设计资源

    从给定的文件信息来看,"WeBlog-毕业设计资源"是一套结合了现代流行技术栈的毕业设计项目资源包。该资源包中包含了前后端分离的Web应用开发所需的文件和配置,具体知识点可以归纳为以下几个方面: 首先,Spring ...

    WebLog Expert Lite v5.5

    一款专门用来对繁杂的WEB服务器日志文件进行综合分析的软件,可以对你网站的来访者进行详细统计:当前活动会话统计、文件存取统计、搜索使用情况统计、浏览器/操作系统统计、错误统计等。通过HTML形式的表格和图表...

    java项目-weblog源码.zip

    Java项目-weblog源码.zip文件内容涉及到了Java语言在开发中的应用,特别是与weblog(网络日志)相关的编程实践。weblog通常指的是网络上的个人日志或日记,可以视为个人或组织对外展示观点、记录事件、分享信息的...

    网站日志分析工具WebLog Expert Lite

    10. **学习与支持**:对于初次使用者,WebLog Expert Lite通常提供详细的用户手册和在线帮助,确保用户能够快速上手。 总之,WebLog Expert Lite作为一款强大的网站日志分析工具,它可以帮助网站管理员深入理解用户...

    WeBlog-Java毕业设计

    在众多的毕业设计项目中,以构建一个博客系统为主题的“Weblog-Java毕业设计”项目尤其受到青睐。 Java语言凭借其跨平台性、面向对象、安全稳定等优点,成为构建企业级应用的首选编程语言之一。因此,利用Java语言...

Global site tag (gtag.js) - Google Analytics