-
Notifications
You must be signed in to change notification settings - Fork 0
Ideas
José Bonnet edited this page Nov 13, 2017
·
6 revisions
This page covers ideas we might one day consider as User Stories for this product.
- Could
snippets
be e-mail messages?-
Pros:
- any snippet could be emailed at the click of a button;
-
Cons:
- clutter!
-
Pros:
- Could we reuse the Single file Rails applications idea (the whole file is here)?
- How to use Active-Record's self joins;
- Use default scopes for snippets' index with
default_scope order('updated_at DESC')
- this became deprecated (and it seems to belong to Ruby-on-Rails), so I've implemented it with
<model>.order updated_at: :desc
- this became deprecated (and it seems to belong to Ruby-on-Rails), so I've implemented it with
@José Bonnet