Ruby on Rails Security Project

http://www.rorsecurity.info/

Posted by devon At June 20, 2008 12:47 ─ 0条评论
在Rails中使用JQuery

http://jimneath.org/2008/06/18/using-jquery-with-ruby-on-rails/

Posted by holin At June 19, 2008 10:38 ─ 0条评论
为Rails应用添加theme支持

http://www.letrails.cn/archives/make-theme-support-works-under-rails-2-1-0

Posted by devon At June 16, 2008 18:17 ─ 0条评论
Running mod_rails on Leopard (OSX 10.5)

http://onrails.org/articles/2008/06/14/running-mod_rails-on-leopard-osx-10-5

Posted by devon At June 15, 2008 10:52 ─ 0条评论
Ruby元编程的好文章

http://onrails.org/articles/2008/06/13/advanced-rails-studio-meta-programming

Posted by devon At June 14, 2008 10:23 ─ 0条评论
capistrano 2.4.0 发布

http://weblog.jamisbuck.org/2008/6/13/capistrano-2-4-0

Posted by devon At June 14, 2008 10:18 ─ 0条评论
新的sphinx插件: thinking sphinx

http://freelancing-gods.com/posts/a_concise_guide_to_using_thinking_sphinx

Posted by devon At June 13, 2008 09:03 ─ 0条评论
Rails中的二级域名处理

http://s2.diffuse.it/blog/show/49-Subdomain+routing+with+rails

Posted by devon At June 11, 2008 08:56 ─ 0条评论
Phusion Passenger™ 2.0 RC 1 and Ruby Enterprise Edition released

Phusion Passenger™ 2.0 RC 1 and Ruby Enterprise Edition released
http://blog.phusion.nl/2008/06/09/phusion-passenger-20-rc-1-and-ruby-enterprise-edition-released/

Ruby Enterprise Edition站点也开通了
http://www.rubyenterpriseedition.com/

还出了系统分析维护的工具,真贴心
http://www.modrails.com/documentation/Users%20guide%202.0.html#_analysis_and_system_maintenance_tools

Posted by holin At June 10, 2008 23:54 ─ 0条评论
用ROR创建面向资源的服务

http://www.infoq.com/cn/news/2008/06/ror-for-restful-service

Posted by devon At June 10, 2008 22:08 ─ 0条评论
rails几款脚手架比拼

rails几款脚手架比拼 http://www.javaeye.com/topic/201161

Posted by devon At June 07, 2008 18:15 ─ 0条评论
从svn到git

从svn到git: http://www.caiwangqin.com/post/527

Posted by devon At June 05, 2008 16:27 ─ 0条评论
Railsconf 2008资料

Railsconf 2008资料

http://www.rubyinside.com/railsconf-2008-round-up-910.html

Posted by devon At June 03, 2008 08:56 ─ 0条评论
Railsconf 2008 视频

大量Railsconf 2008 视频: http://www.railsenvy.com/2008/6/2/Railsconf-videos

Posted by devon At June 03, 2008 00:54 ─ 0条评论
Rails 2.1 新特性大全

Rails 2.1 新特性大全

http://ryandaigle.com/articles/2008/6/2/rails-2-1-released-summary-of-features

Posted by devon At June 02, 2008 23:15 ─ 0条评论
Rails 2.1发布

Rails 2.1发布:gem install rails

http://weblog.rubyonrails.org/2008/6/1/rails-2-1-time-zones-dirty-caching-gem-dependencies-caching-etc

Posted by devon At June 02, 2008 08:45 ─ 0条评论
处理controller中exception的优雅方式

处理controller中exception的优雅方式

rescue_from ActiveRecord::RecordNotFound, :with => :redirect_if_not_found

http://blog.codefront.net/2007/12/10/declarative-exception-handling-in-your-controllers-rails-20-a-feature-a-day-2/

Posted by devon At June 02, 2008 00:11 ─ 0条评论
Mysql 分析及优化工具

Mysql 分析及优化工具: http://www.mysqlperformanceblog.com/tools/

Posted by devon At June 01, 2008 09:40 ─ 0条评论
RailsConf 2008 DHH的视频

RailsConf 2008 DHH的视频: http://www.vimeo.com/1096456

Posted by devon At June 01, 2008 01:52 ─ 0条评论
Ruby 1.8.7 has been released

Ruby 1.8.7 has been released

ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7.tar.bz2
ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7.tar.gz
ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7.zip

Posted by devon At June 01, 2008 01:49 ─ 0条评论
Scalability Best Practices: Lessons from eBay

Scalability Best Practices: Lessons from eBay
http://www.infoq.com/articles/ebay-scalability-best-practices

Posted by devon At May 31, 2008 23:23 ─ 0条评论
RailsConf tutorial and source code open sourced

RailsConf tutorial and source code open sourced

http://github.com/danielwanja/railsconf2008/tree/master

Posted by devon At May 30, 2008 12:10 ─ 0条评论
Flexigrid on Rails

Flexigrid on Rails: http://www.nickfessel.com/index.php?post=17

Posted by devon At May 29, 2008 09:03 ─ 0条评论
Everyday Active Record

新书放出: Everyday Active Record

Posted by devon At May 28, 2008 20:23 ─ 0条评论
Developing Facebook Platform Applications with Rails

Developing Facebook Platform Applications with Rails

http://www.oreilly.com/catalog/9781934356128/cover.html

Posted by devon At May 28, 2008 18:15 ─ 0条评论
一些ruby/rails特有的语法格式

一些ruby/rails特有的语法格式:
http://blog.snowonrails.com/articles/2007/02/04/sd-rb-ruby-rails-idioms

比如:强大的case



case val
when 5: puts 'integer'
when 'snow': puts 'string'
when :a,:b,:c: puts 'list'
when *[:d,:e,:f]: puts 'splated list'
when /\d{2,4}/: puts 'regex'
else puts 'else'
end

Posted by devon At May 28, 2008 13:22 ─ 0条评论
mod_rails on Mac

mod_rails on Mac: http://napkin.highgroove.com/articles/2008/05/27/development-with-rails-passenger-aka-mod_rails-on-mac

Posted by devon At May 28, 2008 12:21 ─ 0条评论
最大规模的Rails应用在哪里

最大规模的Rails应用在哪里: http://www.readwriteweb.com/archives/whats_the_biggest_rails_app.php

Posted by devon At May 28, 2008 00:12 ─ 0条评论
Git 相关视频

Git 相关视频: http://www.gitcasts.com/

Posted by devon At May 28, 2008 00:10 ─ 0条评论
RSpec-1.1.4

RSpec-1.1.4 发布

http://blog.davidchelimsky.net/articles/2008/05/27/rspec-1-1-4

Posted by devon At May 28, 2008 00:09 ─ 0条评论