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
| 2020-05-08 09:54:14 ⛅️ ruby 2.5.5p157 MacBook-Pro-2 in ~/workspace/capi-bara-tests/assets/staticfile | |
| ± sb |wip-route-crds-delete {2} U:1 ?:1 ✗| → CF_API_ENDPOINT=$(cf api | grep -i "api endpoint" | awk '{print $3}') | |
| 2020-05-08 09:54:21 ⛅️ ruby 2.5.5p157 MacBook-Pro-2 in ~/workspace/capi-bara-tests/assets/staticfile | |
| ± sb |wip-route-crds-delete {2} U:1 ?:1 ✗| → SPACE_GUID=$(cf space `cf target | tail -n 1 | awk '{print $2}'` --guid) | |
| 2020-05-08 09:54:25 ⛅️ ruby 2.5.5p157 MacBook-Pro-2 in ~/workspace/capi-bara-tests/assets/staticfile | |
| ± sb |wip-route-crds-delete {2} U:1 ?:1 ✗| → APP_NAME=zip-test | |
| 2020-05-08 09:54:35 ⛅️ ruby 2.5.5p157 MacBook-Pro-2 in ~/workspace/capi-bara-tests/assets/staticfile |
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
| - type: replace | |
| path: /variables/name=telemetry-ca-cert? | |
| value: | |
| name: telemetry-ca-cert | |
| type: certificate | |
| options: | |
| is_ca: true | |
| common_name: 'Telemetry CA' | |
| - type: replace |
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
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| firstName: 'John', | |
| lastName: 'Smith', | |
| fullName: Ember.computed('firstName', 'lastName', function() { | |
| return this.get('firstName') + ' ' + this.get('lastName'); | |
| }), | |