This document is divided into 2 main parts:
- Concepts and Diagrams: lists and comments important sections to get used with AWS EB concepts.
- Hands-on: let's make something useful. :-P
This document is divided into 2 main parts:
| init: function() { | |
| var view = this; | |
| var resizeHandler = function() { | |
| view.rerender(); | |
| }; | |
| this.set('resizeHandler', resizeHandler); | |
| $(window).bind('resize', this.get('resizeHandler')); | |
| }, |
| #!/usr/bin/env ruby | |
| # This pre-commit hook will prevent any commit to forbidden branches | |
| # (by default, "staging" and "production"). | |
| # Put this file in your local repo, in the .git/hooks folder | |
| # and make sure it is executable. | |
| # The name of the file *must* be "pre-commit" for Git to pick it up. | |
| FORBIDDEN_BRANCHES = ["staging", "production"] |