mirror of
https://github.com/github/rails.git
synced 2026-02-07 20:54:57 -05:00
Extract dynamic scaffolding into a plugin. Closes #7700.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6306 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Extract dynamic scaffolding into a plugin. #7700 [Josh Peek]
|
||||
|
||||
* Added user/password options for url_for to add http authentication in a URL [DHH]
|
||||
|
||||
* Fixed that FormTagHelper#text_area_tag should disregard :size option if it's not a string [Brendon Davidson]
|
||||
|
||||
@@ -184,6 +184,8 @@ module ActionController
|
||||
end
|
||||
end_eval
|
||||
end
|
||||
|
||||
deprecate :scaffold => 'Controller scaffolding will be moved to a plugin in Rails 2.0. Switch to the generator or `script/plugin install scaffolding`'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -16,8 +16,6 @@ class Address
|
||||
end
|
||||
|
||||
class AddressesTestController < ActionController::Base
|
||||
scaffold :address
|
||||
|
||||
def self.controller_name; "addresses"; end
|
||||
def self.controller_path; "addresses"; end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user