RoR 第一次测试成功

RoR第一次测试成功

步骤:
第一 安装ruby
     地址:http://rubyinstaller.rubyforge.org
第二 安装rails
     gem ruby的软件管理包
      gem install rails --include-dependencies (有可能会出现问题,再考虑其它办法)
第三 创建一个web应用
     rails myweb
     会自动生成大量文件
     启动 ruby script/server 项目默认自带的http服务器
第四 配置mysql数据库
     1.安装mysql驱动 gem install mysql
     2.将mysql/bin中的libmySQL.dll 拷贝到 windows/system32文件夹中
     3.在数据库中建立三个数据库,名字分别为 myweb_xxxx
    4.在config中配置database.yml 文件
        我的配置如下
     
引用
# SQLite version 3.x
#   gem install sqlite3-ruby (not necessary on OS X Leopard)
development:
  adapter: mysql
  database: first_development
  host: localhost
  username: root
  password: xxx
  pool: 5
  timeout: 5000

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
  adapter: mysql
  database: first_test
  host: localhost 
  username: root
  password: xxx
  pool: 5
  timeout: 5000

production:
  adapter: mysql
  database: first_production
  host: localhost
  username: root
  password: xxxx
  pool: 5
  timeout: 5000

   注意:后面一定要有一个空格,不然会出错
第四 创建一个controller
     1.ruby script/generate controller hello
     2.在controllers文件夹中,在hello控制器中 增加一个方法
     
引用

class HelloController < ApplicationController
  def say
  end
end

     3.在对应的views的hello里面建立一个say.rhtml页面..
第五 访问http://localhost:3000/hello/say 搞定

   

    

你可能感兴趣的:(mysql,sqlite,软件测试,Ruby,Rails)