Paweł Świątkowski

Results 45 comments of Paweł Świątkowski

@etcimon I'm afraid the error is still there: ``` Linking... ld: in ../../../.dub/packages/botan-1.12.9/botan/.dub/build/full-debug-posix.osx-x86_64-dmd_2075-64FB6DC645B165220CB51902EF5F2222/libbotan.a(unique_4a15_3b6.o), in section __TEXT,__textcoal_nt reloc 2: symbol index out of range for architecture x86_64 clang: error: linker command...

To avoid confusion: I tried both `master` and `1.12.7` of botan with `DMD64 D Compiler v2.075.0`.

So, I just was bitten by this. And I discovered a funny thing, maybe it'd help someone: ```ruby relation.where { ... }.per_page(per_page).page(page) # this works correctly relation.per_page(per_page).page(page).where { ... }...

`pager` as an option keeps `current_page` and `per_page` values, which otherwise would be lost. On the other hand, these two could be options directly, not the whole pager.

I pushed another version, where option is renamed to `_pager` to suggest it's internal (well...) and actual public pager is created in the end via public `pager` method of the...

I really like your API suggestions! Will do it like that. I hope I'll be able to work on that next week. And sure, I can add Spotify integration too.

Rebased master to resolve conflict

@h0jeZvgoxFepBQ2C this now conflicts with changes from #312. I think even with the other PR merged it would be still beneficial to have an option to exclude some dirs (node_modules,...

I did some more profiling on different solutions: * just excluding node_modules (`next if relative_path.starts_with?('node_modules')` gives about 45% of time improvement (nice!) * having a configurable list of absolute paths...