Last active
July 15, 2016 17:00
-
-
Save orangeeli/0aaaff72f9a69d886624e9631c9ae599 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GorillaController < JungleController | |
def share_banana | |
respond_to do |format| | |
format.json { render :json => banana_json } | |
end | |
end | |
def get_banana | |
respond_to do |format| | |
format.html { render "banana", :layout => 'plant-tree' } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment