Skip to content

Instantly share code, notes, and snippets.

View sethboyles's full-sized avatar

Seth Boyles sethboyles

View GitHub Profile
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
- 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
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');
}),