Sha256: 2d4f62220b6f1a52c0d834c86ba7e220cb31daaff121646fd913ebded2159274
Contents?: true
Size: 1.96 KB
Versions: 1
Compression:
Stored size: 1.96 KB
Contents
class StatesController < ApplicationController # GET /states # GET /states.xml def index @states = Geo::State.find(:all) respond_to do |format| format.html # index.html.erb format.xml { render :xml => @states } end end # GET /states/1 # GET /states/1.xml def show @state = Geo::State.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml => @state } end end # GET /states/new # GET /states/new.xml def new @state = Geo::State.new respond_to do |format| format.html # new.html.erb format.xml { render :xml => @state } end end # GET /states/1/edit def edit @state = Geo::State.find(params[:id]) end # POST /states # POST /states.xml def create @state = Geo::State.new(params[:state]) respond_to do |format| if @state.save flash[:notice] = 'State was successfully created.' format.html { redirect_to(state_path(@state)) } format.xml { render :xml => @state, :status => :created, :location => @state } else format.html { render :action => "new" } format.xml { render :xml => @state.errors, :status => :unprocessable_entity } end end end # PUT /states/1 # PUT /states/1.xml def update @state = Geo::State.find(params[:id]) respond_to do |format| if @state.update_attributes(params[:state]) flash[:notice] = 'State was successfully updated.' format.html { redirect_to(state_path(@state)) } format.xml { head :ok } else format.html { render :action => "edit" } format.xml { render :xml => @state.errors, :status => :unprocessable_entity } end end end # DELETE /states/1 # DELETE /states/1.xml def destroy @state = Geo::State.find(params[:id]) @state.destroy respond_to do |format| format.html { redirect_to(states_url) } format.xml { head :ok } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ultrasphinx-1.11 | test/integration/app/app/controllers/states_controller.rb |