Sha256: 7b5ce3cd6094474f94732e84edaa149b56dfcf71f7a49e9d76e7e61188acfc90

Contents?: true

Size: 395 Bytes

Versions: 2

Compression:

Stored size: 395 Bytes

Contents

# controllers
class DefaultController < ActionController::Base
  def index
    render :text => "index: I was invoked with #{request.path}"
  end
  
  def show
    render :text => "show: I was invoked with #{request.path}"
  end
  
  def new
    render :text => "new: I was invoked with #{request.path}"
  end
  
  def edit
    render :text => "edit: I was invoked with #{request.path}"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pickle-dupe-0.3.1 features/app/action_controllers.rb
pickle-dupe-0.3.0 features/app/action_controllers.rb