Objective: To decorate HTML page
1. add some test data
ruby script/generate migration add_test_data
2. edit db/migrate/*****_add_test_data.rb
class AddTestData < ActiveRecord::Migration
def self.up
Product.delete_all
Product.create(:title => 'Pragmatic Project Automation',
:description =>
%{<p>
<em>Pragmatic Project Automation</em> shows you how to improve the
consistency and repeatability of your project's procedures using
automation to reduce risk and errors.
</p>
<p>
Simply put, we're going to put this thing called a computer to work
for you doing the mundane (but important) project stuff. That means
you'll have more time and energy to do the really
exciting---and difficult---stuff, like writing quality code.
</p>},
:image_url => '/images/auto.jpg',
:price => 29.95)
Product.create(:title => 'Pragmatic Version Control',
:description =>
%{<p>
This book is a recipe-based approach to using Subversion that will
get you up and running quickly---and correctly. All projects need
version control: it's a foundational piece of any project's
infrastructure. Yet half of all project teams in the U.S. don't use
any version control at all. Many others don't use it well, and end
up experiencing time-consuming problems.
</p>},
:image_url => '/images/svn.jpg',
:price => 28.50)
Product.create(:title => 'Pragmatic Unit Testing (C#)',
:description =>
%{<p>
Pragmatic programmers use feedback to drive their development and
personal processes. The most valuable feedback you can get while
coding comes from unit testing.
</p>
<p>
Without good tests in place, coding can become a frustrating game of
"whack-a-mole." That's the carnival game where the player strikes at a
mechanical mole; it retreats and another mole pops up on the opposite side
of the field. The moles pop up and down so fast that you end up flailing
your mallet helplessly as the moles continue to pop up where you least
expect them.
</p>},
:image_url => '/images/utc.jpg',
:price => 27.75)
end
def self.down
Product.delete_all
end
end
#%{...} is same as "", but used for long string(text)
3. insert test data into database
Please delete the db/migrate/*****_add_price.rb first, Or it will be executed and a MySQL exception will be thrown.
rake db:migrate
#Please check coressponding table in database for confirm
4. pick "files.rar" from attachment
copy depot.css into public/stylesheets
copy images into public/images
copy index.html.erb into app/views/products
5. edit stylesheet_link_tag of app/views/layouts/products.html.erb
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>Products: <%= controller.action_name %></title>
<%= stylesheet_link_tag 'scaffold', 'depot' %>
</head>
<body>
<p style="color: green"><%= flash[:notice] %></p>
<%= yield %>
</body>
</html>
6. try it.
分享到:
- 2008-06-24 15:45
- 浏览 1144
- 评论(0)
- 论坛回复 / 浏览 (0 / 1738)
- 查看更多
相关推荐
标题中的“Web开发敏捷之道--应用Rails进行敏捷Web开发 之 Depot代码”表明这是一个关于使用Ruby on Rails框架进行敏捷Web开发的示例项目,名为Depot。Ruby on Rails(简称Rails)是一个开源的Web应用程序框架,它...
4. **路由**:Rails的路由系统是连接URL与控制器动作的桥梁,定义了URL模式到应用程序内部操作的映射。 5. **生成器**:Rails提供了许多命令行工具,如`rails generate`,用于快速创建模型、控制器、迁移等,加速...
4. **模型(Models)**:在Rails中,模型代表数据模型和业务逻辑。例如,Depot可能有Product、Order和Cart等模型,每个模型对应数据库中的一个表。你可以使用`rails generate model`命令创建新模型。 5. **迁移...
depot教程depot教程depot教程depot教程depot教程depot教程depot教程depot教程depot教程
Depot_tools是Google开发的一套工具集合,主要用于简化开源项目,特别是Chrome和Chromium的源码获取、构建和管理过程。这些工具旨在提供一个统一的命令行接口,使得开发者能够更方便地参与到这些大型项目的开发中。...
自述文件 该自述文件通常会记录启动和运行应用程序所需的所有步骤。 您可能要讲的内容: Ruby版本系统依赖配置数据库创建数据库初始化如何运行测试套件服务(作业队列,缓存服务器,搜索引擎等) 部署说明… 如果您...
"depot源代码"是一个与Rails框架相关的项目,它展示了如何使用Rails进行敏捷Web开发。Rails是Ruby编程语言的一个开源Web应用程序框架,以其MVC(模型-视图-控制器)架构模式著称,用于构建数据库驱动的Web应用。在...
标题中的"depot_toole"实际上是指Google的`depot_tools`,这是一个包含了各种源码管理、构建工具的集合,主要用于Google的开源项目,比如V8 JavaScript引擎。这个压缩包表明是已经验证过的,所有文件都完整,可以...
4. 接下来,使用Tab键和方向键,用户可以将光标移动到【Actions】菜单,然后选中【MarkForInstall】命令。这一步骤是将软件包标记为安装状态。 5. 再次按Tab键,将光标调整到【Install】命令,然后回车执行安装。...
depot_tools工具包 https://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up
RoR-Depot 是一个基于 Ruby on Rails 框架构建的示例项目,它旨在为初学者提供一个学习和实践 Rails 开发的平台。Rails,全称 Ruby on Rails,是由 David Heinemeier Hansson 创建的开源 Web 应用程序框架,它遵循 ...
4. `fetch`脚本:`depot_tools`中的`fetch`脚本用于自动化获取和更新WebRTC及其依赖项。只需运行一个命令,就可以拉取所有必要的代码库,这对于保持项目同步和更新非常有用。 5. `gclient`:这是一个Python脚本,...
本教程将引导你从零开始学习Ruby on Rails的开发,通过一个具体的实例项目——Depot应用,让你深入理解Rails的工作原理和开发流程。 首先,让我们深入了解Ruby语言。Ruby是一种动态类型、面向对象的脚本语言,以其...
2018年4月27日翻墻下载,最新版本的depot_tools工具——Linux/Mac版本
自述文件 该自述文件通常会记录启动和运行应用程序所需的所有步骤。 您可能要讲的内容: Ruby版本 系统依赖 配置 数据库创建 数据库初始化 如何运行测试套件 服务(作业队列,缓存服务器,搜索引擎等) ...
"depot_tools_2017.3.24(禁止cipd更新)"这个压缩包文件包含了Chromium项目的开发工具集,depot_tools,专为Windows操作系统设计。Chromium是一个开源的浏览器项目,它是Google Chrome的基础,对于Web开发者和...