This file contains 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
# This sets up fish so that, if you type a command that should be | |
# run using Bundler, it first automatically prepends "bundle exec" | |
# to the command line buffer before executing it. Works for all | |
# commands found in the "bin" directory of the current bundle. | |
# | |
# To override this behavior and run such a command without Bundler, | |
# prefix with "command" (e.g., `command rake -T`) | |
# | |
# Pros (vs binstubs or aliases): | |
# * automatically adjusts to bundle changes |
This file contains 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
/* | |
|-------------------------------------------------------------------------- | |
| Delete form macro | |
|-------------------------------------------------------------------------- | |
| | |
| This macro creates a form with only a submit button. | |
| We'll use it to generate forms that will post to a certain url with | |
| the DELETE method, following REST principles. | |
| | |
*/ |