Christopher Pfohl

Results 34 comments of Christopher Pfohl

:+1: Can't get this working either and it feels a touch ridiculous. (As in, the fact that I can't figure it out).

Looks like I misread dschnare's problem. It's not the same as mine. I'll open a separate issue for mine... @dschnare Use `@import` for less imports. "@reference" is only useful to...

As a potential work around for the time being you could switch to Cassette.LessJs which shouldn't have any overlap...yes a bit of bloat while things get fixed, but should work.

Sweet, thanks.

Hm, just noticed I missed the `action.yml` modifications, but still this is a start in the right direciton....

Ah, interesting. I am using 0.9.10

Ah, and here's why: (from Backbone 0.9.9) ``` _reset: function() { this.length = 0; this.models = []; this._byId = {}; this._byCid = {}; }, ``` has changed to (from Backbone...

Looks like adding `this.model = [];` helps. Side note, doing: ``` if (options.sieve) { this.sieve = options.sieve; } ``` is a really nice touch too...

I'm seeing the same error on similarly "high precision" values. I've wrapped all this to work with turfjs. Inside each function I'm rounding all coordinates to 7 decimal places and...

@pokonski A small update to your permissions_map method: ```rb def permissions_map result = {} applicable_roles.each do |role| role.permissions.each do |permission| if permission.subject permission_set = result[permission.subject.name] ||= {} if permission.block permission_set[permission.action]...