« callbacks in Rails | Main | Video-Applikation »

Änderungen in Rails 2.0

Ich dachte mir, man könnte ja mal alle Änderungen in Rails 2.0 an einer Stelle zusammentragen, so das jeder was davon hat. Wenn einer noch Änderungen kennt die hier nicht stehen, einfach schreiben.

- ActionWebService raus, ActiveResource rein (RESTful)
- aus z.B. show.rhtml wird show.html.erb
- es gibt jetzt einen Query Cache
- die Migration haben sich geändert

create_table :people do |t|
t.column, "account_id", :integer
t.column, "first_name", :string, :null => false
t.column, "last_name", :string, :null => false
t.column, "description", :text
t.column, "created_at", :datetime
t.column, "updated_at", :datetime
end

wird zu

create_table :people do |t|
t.integer :account_id
t.string :first_name, :last_name, :null => false
t.text :description
t.timestamps
end

- Verbesserung der HTTP-Authentifizierung
- verschiedene JavaScript und Css-Dateien können nun zu einer Datei zusammengeführt
werden

<%= javascript_include_tag(:all, :cache => true) %>
<%= stylesheet_link_tag(:all, :cache => true) %>

- die schöne Pagination ist aus dem Kern geflogen ;-(, also
schonmal ein Plugin suchen, ganz gut soll wohl "will_paginate"
sein

So mehr weiß ich gerade nicht.

Teilweise wurde Code von http://weblog.rubyonrails.org/2007/9/30/rails-2-0-0-preview-release
benutzt.

TrackBack

TrackBack URL for this entry:
http://www.innoq.com/movabletype/mt-tb.cgi/2904

Post a comment

(If you haven't left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won't appear on the entry. Thanks for waiting.)

About

This page contains a single entry from the blog posted on November 22, 2007 9:10 PM.

The previous post in this blog was callbacks in Rails.

The next post in this blog is Video-Applikation.

Many more can be found on the main index page or by looking through the archives.

Powered by
Movable Type 3.31