Sha256: 12322d75615d17334f29d04e6b02e0c268b1e4afea54300683cd0f6ffddf7bfe

Contents?: true

Size: 349 Bytes

Versions: 12

Compression:

Stored size: 349 Bytes

Contents

class Testing < Application

  # ...and remember, everything returned from an action
  # goes to the client...
  def index
    render
  end
  
  def next
    "<p>Got to next</p>"
  end
  
  def show_form
    render
  end
  
  def submit_form
    render(params.map do |param, value|
      "<p>#{param}: #{value}</p>"
    end.join("\n"))
  end
  
end

Version data entries

12 entries across 6 versions & 1 rubygems

Version Path
merb-core-1.1.3 spec10/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.3 spec/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.2 spec10/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.2 spec/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.1 spec/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.1 spec10/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.0 spec/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.0 spec10/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.0.rc1 spec/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.0.rc1 spec10/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.0.pre spec10/public/webrat/test_app/app/controllers/testing.rb
merb-core-1.1.0.pre spec/public/webrat/test_app/app/controllers/testing.rb