Sha256: 9b191ec828df462cab9aae77cb1ae780c912f2a779d51a5597018b979280008e
Contents?: true
Size: 336 Bytes
Versions: 58
Compression:
Stored size: 336 Bytes
Contents
class ProfilesController < ApplicationController respond_to :props respond_to :json def show if params[:id] == '1' @name = 'Test Profile Sr.' @bio = 'This is the first test profile' else @name = 'Test Profile Jr.' @bio = 'This is the second test profile' end respond_with @name end end
Version data entries
58 entries across 58 versions & 1 rubygems