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
| box: nodejs | |
| build: | |
| steps: | |
| # Correct way of indenting | |
| - script: | |
| name: works | |
| code: | | |
| echo "more indentation" |
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
| box: tcnksm/gox:1.4.2 | |
| build: | |
| steps: | |
| - install-packages: | |
| packages: openssh-client | |
| - termie/glide-build: | |
| build: false |
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
| box: ruby:2.2.3 | |
| build: | |
| steps: | |
| # uncomment if you use box: ruby:2.2.3-slim | |
| # - script: | |
| # name: install deps | |
| # code: | | |
| # apt-get update | |
| # apt-get install -y wget libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev build-essential chrpath libssl-dev libxft-dev |
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
| # box:... | |
| # services: | |
| # - ... | |
| build: | |
| steps: | |
| - install-packages: | |
| packages: xvfb firefox | |
| - script: | |
| name: Enable virtual display | |
| code: |- |
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
| /** | |
| * A component to wrap/render backbone views. It will instantiate the backbone | |
| * view with options as the main parameters. | |
| * | |
| * Usage: | |
| * ``` | |
| * import AppSettings from 'modules/app-settings'; | |
| * | |
| * const options = {}; | |
| * |
OlderNewer