features/app/app.rb in pickle-0.5.4 vs features/app/app.rb in pickle-0.5.5
- old
+ new
@@ -88,22 +88,22 @@
end
# controllers
class DefaultController < ActionController::Base
def index
- render :text => "index: I was invoked with #{request.path}"
+ render :plain => "index: I was invoked with #{request.path}"
end
-
+
def show
- render :text => "show: I was invoked with #{request.path}"
+ render :plain => "show: I was invoked with #{request.path}"
end
-
+
def new
- render :text => "new: I was invoked with #{request.path}"
+ render :plain => "new: I was invoked with #{request.path}"
end
-
+
def edit
- render :text => "edit: I was invoked with #{request.path}"
+ render :plain => "edit: I was invoked with #{request.path}"
end
end
# notifiers
class Notifier < ActionMailer::Base