Thoughts
A great example of me programming out of order, I just wrote all the method for this class and now I'm going to write the class definition
My file right now looks like
```
before_action :example
def create
# actual code here
end
private
def example
# actual code here
end
```
and now I need to write the `class ExampleController < ...` bit at the top of the file.