Sha256: 8e9cc0bb4d69e2f9f9374f0d662f79f3e78998fdcaeda9569eafb159578be7c2
Contents?: true
Size: 255 Bytes
Versions: 157
Compression:
Stored size: 255 Bytes
Contents
require_dependency "ishapi/application_controller" module Ishapi class CitiesController < ApplicationController def index @cities = City.all end def show @city = City.find_by :cityname => params[:cityname] end end end
Version data entries
157 entries across 77 versions & 1 rubygems