Jonathan

Results 18 comments of Jonathan

@reidab I think maybe that shouldn't be config anymore. Since the consuming application is responsible now for when `head-layout` component gets rendered I'd expect to have that logic co-located with...

Looked into this a bit. Short of watching the Dir#chdir method and storing a variable that contains the old path I'm not sure how this could be handled. It looks...

@dtenenba If you execute `File.dirname(__FILE__)` from within the context of the whereami setup method you get `"."` which unfortunately doesn't resolve the issue. And if you try to expand the...

@dtenenba Would be great if you could access the old path. I did think about keeping a stack internal to Pry that'd store the dir value and push the new...

I believe in the rehydration builder there is a path that happens when a node is skipped or removed (when the rehydration builder can't decipher something so it throws it...

Not sure where to put this, but I have some code that in ED 3.1 worked: ``` this.store.createRecord('something', { someModelFragement: { foo: 1 } }); ``` That now requires I...

I did some spelunking today to see if I could write something that'd follow along with @runspired's comment above, but found it to be a bit more complex than I...

I'm also curious about this. I'm currently giving ``` { :title=>"Ember.js 1.11 Workshop", :url=>"https://www.youtube.com/watch?v=8GMeMM0ukYM", :relationships=>{:author=>{:data=>[{:type=>"people", :id=>"39"}]}}} ``` And was assuming that it'd be parse on init of my JsonApiClient::Resurce for...

@garytaylor There are some examples of this in the tests: https://github.com/chingor13/json_api_client/blob/f779c3c6b4f8b292824238a92446d3cfa922fbe2/test/unit/updating_test.rb#L172 I believe given ``` class Resource < Base has_many :authors end class Author < Base end ``` You should...

@Turbo87 So you think the changes need to occur in broccoli-lint-eslint then? If so, should I begin work there? Also, I'm not entirely certain *how* to start with this. I...