SlideShare a Scribd company logo
用Ruby编写博客应用 Powered by Rabbit 0.9.0
用Ruby
编写博客应用
吴江
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Ruby
1/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
作者
2/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
基础
工具 3/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
irb
ri
rdoc 4/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
演示5/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
基本类型
i = 1 # Integer
b = true # Boolean
f = 1.0/3 # Float
n = nil # Null
str = "a string" # String
sym = :"a string" # Symbol
6/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
面向对象
i.class # => Integer
b.class # => Boolean
f.class # => Float
n.class # => NilClass
str.class # => String
sym.class # => Symbol
7/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
符号
str1 = "a string"
str2 = "a string"
str1 == str2 # true
str1.object_id == str2.object_id # false
sym1 = :"a string"
sym2 = :"a string"
sym1 == sym2 # true
sym1.object_id == sym2.object_id # true
8/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
数组操作
a = [1, 2, 3]
a << 4 # a = [1, 2, 3, 4]
a[0] # => 1
a[1..3] # => [2, 3, 4]
a[1] = "a" # a = [1, "a", 3, 4]
a[5] = [1,2] # a = [1, "a", 3, 4, nil, [1,2]]
9/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
哈希表操作
a = { "a" => 1 }
a["a"] # => 1
a["b"] # => nil
a["b"] = 2 # a = { "a" => 1, "b" => 2}
10/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
写博客
11/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
服务商
12/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
MSN
Space
挂了 13/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Wordpress
14/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
满大街
都是 15/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
没脸和别
人打招呼
16/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
将要实现
的特点
17/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
不用DB
鼓掌!!!
18/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
没有SQL
注入
19/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
不用担心后
台密码被盗
20/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
文件格式
# 文件名: 2010-10-10-a-lucky-day.txt
title: "A Lucky Day"
date: 10/10/2010
# 今天是我的幸运日
早上在地铁门将要关上的那一刻,我冲进了车厢,于是约会没有迟到...
中午提前了一点去港丽,居然只排了42分钟...
晚上又赶上了末班车...
到家数了数,钱包里面正好有42块钱...
21/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
YAML
22/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
JSON
兼容 23/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Markdown
24/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Markdown
不能传值
25/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Haml
模版 26/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Sinatra
DSL
27/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
演示28/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
安装
Ruby29/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
RVM
30/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
安装
Ruby库
31/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Rubygems:
包管理工具
32/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Bundler
33/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
gem
install
bundler34/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Gemfile
source "http://rubygems.org"
gem 'haml' # HAML模版
gem 'rdiscount' # 渲染Markdown
gem 'sinatra' # Sinatra
gem 'thin' # 应用服务器
gem 'shotgun' # 负责重启服务器
35/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
bundle
install
36/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Hello, world
get '/' do
"Hello, world!"
end
37/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
get '/'
38/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
列出
所有
日志 39/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
外部shell命令
`ls *.txt`
`find -name "*.txt"`
40/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
使用Dir类
Dir["*.txt"]
Dir["**/*.txt"]
41/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
读取
文件
内容 42/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
File.read
43/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
/:year/:month/:day/:title
列出文章内容
44/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
评论45/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Disqus
46/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
部署47/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Heroku
48/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
Q & A
49/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
本项目地址
http://github.com/nouse/text-blog
50/51
用Ruby编写博客应用 Powered by Rabbit 0.9.0
谢谢!
51/51

More Related Content

PPT
Loading JavaScript: Even a caveman can do it
PPTX
Seattle Code Camp 2016 - .Net Core
PDF
徒手打造自己的粉專客服機器人
KEY
Plataforma java
PDF
The Backend Side of the Mobile
PDF
Around the PHP Community
PDF
Demonstration: Building a dapp on Ethereum with Ganache and Metamask
PPT
Put People First March & Rally: Photogallery
Loading JavaScript: Even a caveman can do it
Seattle Code Camp 2016 - .Net Core
徒手打造自己的粉專客服機器人
Plataforma java
The Backend Side of the Mobile
Around the PHP Community
Demonstration: Building a dapp on Ethereum with Ganache and Metamask
Put People First March & Rally: Photogallery

More from Jiang Wu (7)

PDF
Python speed up with numba
PDF
Implement Web API with Swagger
PDF
API documentation with Swagger UI(LT)
PDF
Sinatra and friends
PDF
Rubyconf China
PPT
ODP
Ruby off Rails---rack, sinatra and sequel
Python speed up with numba
Implement Web API with Swagger
API documentation with Swagger UI(LT)
Sinatra and friends
Rubyconf China
Ruby off Rails---rack, sinatra and sequel
Ad

Recently uploaded (20)

PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Modernizing your data center with Dell and AMD
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
GamePlan Trading System Review: Professional Trader's Honest Take
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PDF
Machine learning based COVID-19 study performance prediction
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Electronic commerce courselecture one. Pdf
PDF
Advanced Soft Computing BINUS July 2025.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Modernizing your data center with Dell and AMD
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
NewMind AI Monthly Chronicles - July 2025
The Rise and Fall of 3GPP – Time for a Sabbatical?
Mobile App Security Testing_ A Comprehensive Guide.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
20250228 LYD VKU AI Blended-Learning.pptx
GamePlan Trading System Review: Professional Trader's Honest Take
Chapter 3 Spatial Domain Image Processing.pdf
MYSQL Presentation for SQL database connectivity
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
“AI and Expert System Decision Support & Business Intelligence Systems”
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
Machine learning based COVID-19 study performance prediction
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Reach Out and Touch Someone: Haptics and Empathic Computing
Electronic commerce courselecture one. Pdf
Advanced Soft Computing BINUS July 2025.pdf
Ad

用Ruby编写博客应用