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
| worker: QUEUE=* bundle exec rake environment resque:work | |
| scheduler: bundle exec rake environment resque:scheduler |
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
| ===Useful Scripts and configuration=== | |
| In order to use the following scripts, create a file named as indicated with the given contents, make it executable with chmod +x, and place it in the same location as the git executable (or anywhere in your path). Once the file is in place, it can be used as any other normal git command. For example: | |
| git integrate | |
| git ship | |
| git mdiff repo/branch | |
| ====git-integrate==== | |
| The git-integrate script pulls in the latest changes from the master origin repository into your local master branch and rebases your current branch on top of those new changes thereby integrating the new changes into your branch without needing another merge commit. |
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
| require("lsqlite3") | |
| -- Igmar: Wanneer closen we dat DB object eigenlijk ? | |
| db = sqlite3.open('/etc/asterisk/users.sqlite') | |
| --CONSOLE = "Console/dsp" -- Console interface for demo | |
| --CONSOLE = "DAHDI/1" | |
| --CONSOLE = "Phone/phone0" | |
| TRUNK = "DAHDI/G1" |
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
| <h3> | |
| <%= @o.name %> | |
| </h3> | |
| Тип: <%= @o.product.name %><br> | |
| Параметры: <%= @o.order_key %><br> | |
| <hr> | |
| Доставка: <%= @o.delivery.transporter.name %><br> | |
| <%= @o.delivery.city %>, <%= @o.delivery.stock %> | |
| <%= @o.delivery.recipient %> | |
| <hr> |