Guides.rubyonrails.org
#10

Ruby on Rails Guides

Official introduction and general reference to learning and using Rails.

Link: guides.rubyonrails.org

  • Internationalization (I18n) API

    guides.rubyonrails.org 23 May '13, 2pm

    , which are traditionally used for separating “languages” and “regional setting” or “dialects”. Many international applications use only the “language” element of a locale such as :cs , :th or :es (for Czech, Thai and Spanish). However, there are also regional differences within diffe...

  • Application Templates

    guides.rubyonrails.org 22 May '13, 8am

    to apply templates to an existing Rails application. The location of the template needs to be passed in to an environment variable named LOCATION . Again, this can either be path to a file or a

  • Migrations

    guides.rubyonrails.org 22 May '13, 1am

    In general editing existing migrations is not a good idea: you will be creating extra work for yourself and your co-workers and cause major headaches if the existing version of the migration has already been run on production machines. Instead, you should write a new migration that pe...

  • Rack

    guides.rubyonrails.org 20 May '13, 10am

    use ActionDispatch::Static use Rack::Lock use ActiveSupport::Cache::Strategy::LocalCache use Rack::Runtime use Rails::Rack::Logger use ActionDispatch::ShowExceptions use ActionDispatch::DebugExceptions use ActionDispatch::RemoteIp use Rack::Sendfile use ActionDispatch::Callbacks use A...

  • Asset Pipeline

    guides.rubyonrails.org 02 May '13, 8pm

    Not all caches will reliably cache content where the filename only differs by query parameters . Steve Souders recommends , “…avoiding a querystring for cacheable resources”. He found that in this case 5-20% of requests will not be cached. Query strings in particular do not work at al...

  • Routing from the Outside In

    guides.rubyonrails.org 27 Apr '13, 4pm

    In addition to resource routing, Rails has powerful support for routing arbitrary URLs to actions. Here, you don’t get groups of routes automatically generated by resourceful routing. Instead, you set up each route within your application separately.

  • Active Record Query Interface

    guides.rubyonrails.org 25 Apr '13, 8am

    But this approach becomes increasingly impractical as the table size increases, since User.all.each instructs Active Record to fetch the entire table in a single pass, build a model object per row, and then keep the entire array of model objects in memory. Indeed, if we have a large n...

  • A Guide to Active Record Associations

    guides.rubyonrails.org 20 Apr '13, 11pm

    is a connection between two Active Record models. Associations are implemented using macro-style calls, so that you can declaratively add features to your models. For example, by declaring that one model belongs_to another, you instruct Rails to maintain Primary Key–Foreign Key inform...

Related

rubylearning.com
Ruby Tutorial - Learn Ruby
ruby-i18n.org
Ruby I18n
rubyinside.com
Ruby Inside: The Ruby Blog
haml-lang.com
Haml
macromates.com
TextMate — The Missing Editor for Mac OS X
git-scm.com
Git - Fast Version Control System
rake.rubyforge.org
Rake -- Ruby Make
railsapi.com
Rails Searchable API Doc
rubyfrance.org
RubyFlowFr : soyez toujours au courant de l'actualité Ruby
modrails.com
Phusion Passenger application server
gembundler.com
Bundler: The best way to manage a Ruby application's gems
nubyonrails.com
Nuby on Rails | Ruby on Rails for Newbies
rack.rubyforge.org
Rack: a Ruby Webserver Interface
ruby-lang.org
Ruby Programming Language
asciicasts.com
ASCIIcasts - Recent Episodes
jruby.org
Home — JRuby.org
radiantcms.org
Radiant CMS
rubyforge.org
RubyForge: Welcome
railsmachine.com
Rails Machine - Home
sqlite.org
SQLite Home Page
rspec.info
RSpec.info: home
railscasts.com
RailsCasts: Ruby on Rails Screencasts
subversion.tigris.org
subversion.tigris.org
rubygems.org
RubyGems.org | your community gem host
weblog.jamisbuck.org
the { buckblogs :here }
cukes.info
Cucumber - Making BDD fun