Skip to content

Instantly share code, notes, and snippets.

@pinzonjulian
Created January 22, 2018 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pinzonjulian/be39a1551d15f308473f6a1781d63580 to your computer and use it in GitHub Desktop.
Save pinzonjulian/be39a1551d15f308473f6a1781d63580 to your computer and use it in GitHub Desktop.
Organizing an app in Ruby on Rails
class OrdersController < ApplicationController
def new
# some cool code
end
def create
# some cool code
end
def index
# some cool code
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment