I hereby claim:
- I am kamal on github.
- I am kamal (https://keybase.io/kamal) on keybase.
- I have a public key whose fingerprint is 3553 A13F 4109 E7FA 0F99 BA7B A82F 6EE2 B52B 9135
To claim this, I am signing this object:
Ember.run(function() { | |
author.load(100, {id: 100, name: 'bob'}); | |
post.load(1, {id: 1, author_ids: [100]}); | |
}); | |
Ember.run(function() { | |
author.set('name', 'billy'); | |
}); |
test("modifying a hasMany record should make parent dirty", function() { | |
expect(2); | |
var Author = Ember.Model.extend({ | |
id: Ember.attr(), | |
name: Ember.attr() | |
}), | |
Post = Ember.Model.extend({ | |
id: Ember.attr(), | |
authors: Ember.hasMany(Author, {key: 'author_ids'}) |
{ | |
"continents": { | |
"Africa": [ | |
"Africa" | |
], | |
"Antarctica": [ | |
"Antarctica" | |
], | |
"Asia": [ | |
"Asia" |
I hereby claim:
To claim this, I am signing this object:
this is a test
another line
Error: EEXIST, file already exists '/Users/kamal/src/garaje/tmp/caching-writer-dest-dir_dlQOxl.tmp'━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ | |
at Error (native) | |
at Object.fs.symlinkSync (fs.js:852:18) | |
at symlink (/Users/kamal/src/garaje/node_modules/ember-cli/node_modules/symlink-or-copy/index.js:82:14) | |
at Function.symlinkOrCopySync (/Users/kamal/src/garaje/node_modules/ember-cli/node_modules/symlink-or-copy/index.js:58:5) | |
at /Users/kamal/src/garaje/node_modules/ember-cli/node_modules/broccoli-sourcemap-concat/node_modules/broccoli-caching-writer/index.js:103:21 | |
at lib$rsvp$$internal$$tryCatch (/Users/kamal/src/garaje/node_modules/ember-cli/node_modules/promise-map-series/node_modules/rsvp/dist/rsvp.js:489:16) | |
at lib$rsvp$$internal$$invokeCallback (/Users/kamal/src/garaje/node_modules/ember-cli/node_modules/promise-map-series/node_modules/rsvp/dist/rsvp.js:501:17) | |
at lib$rsvp$$internal$$publish (/Users/kamal/src/ |
* makes bundle update succeed | |
* fixes config.serve_static_files deprecation | |
* fixes config.static_cache_control deprecation | |
* fixes raise_in_transactional_callbacks deprecation | |
* replaces config.assets.precompile with manifest.js |
addEventListener("fetch", event => { | |
event.respondWith(handleRequest(event.request)); | |
}); | |
/** | |
* Multiplex requests to a fixed list of destinations. | |
* | |
* It is intentional that we only support rewriting the incoming request URL to | |
* that of the destination. Everything else on the request is untouched. | |
* |