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
rails几款脚手架比拼 http://www.javaeye.com/topic/201161
大量Railsconf 2008 视频: http://www.railsenvy.com/2008/6/2/Railsconf-videos
处理controller中exception的优雅方式
rescue_from ActiveRecord::RecordNotFound, :with => :redirect_if_not_found
Mysql 分析及优化工具: http://www.mysqlperformanceblog.com/tools/
RailsConf 2008 DHH的视频: http://www.vimeo.com/1096456
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
Scalability Best Practices: Lessons from eBay
http://www.infoq.com/articles/ebay-scalability-best-practices
RailsConf tutorial and source code open sourced
Flexigrid on Rails: http://www.nickfessel.com/index.php?post=17
Developing Facebook Platform Applications with 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
mod_rails on Mac: http://napkin.highgroove.com/articles/2008/05/27/development-with-rails-passenger-aka-mod_rails-on-mac
最大规模的Rails应用在哪里: http://www.readwriteweb.com/archives/whats_the_biggest_rails_app.php
