aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/examples/benchmark.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-09-03 00:18:30 +0000
committerMichael Koziarski <michael@koziarski.com>2007-09-03 00:18:30 +0000
commitf81dae3fca46c43d1fb6e4cb40734ef35623a72e (patch)
tree987017ae80580ee8f39c877a8f91c8b42eae14c5 /actionpack/examples/benchmark.rb
parent6246fad19a5ec747f5914c142b8631af212d47ea (diff)
downloadrails-f81dae3fca46c43d1fb6e4cb40734ef35623a72e.tar.gz
rails-f81dae3fca46c43d1fb6e4cb40734ef35623a72e.tar.bz2
rails-f81dae3fca46c43d1fb6e4cb40734ef35623a72e.zip
Remove deprecated functionality from actionpack. Closes #8958 [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7403 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/examples/benchmark.rb')
-rw-r--r--actionpack/examples/benchmark.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/examples/benchmark.rb b/actionpack/examples/benchmark.rb
index 21d81283a6..78a6649c74 100644
--- a/actionpack/examples/benchmark.rb
+++ b/actionpack/examples/benchmark.rb
@@ -7,7 +7,7 @@ Person = Struct.new("Person", :name, :address, :age)
class BenchmarkController < ActionController::Base
def message
- render_text "hello world"
+ render :text => "hello world"
end
def list