Created
January 22, 2018 04:26
-
-
Save pinzonjulian/be39a1551d15f308473f6a1781d63580 to your computer and use it in GitHub Desktop.
Organizing an app in Ruby on Rails
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 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