Samnang Chhun

Results 14 comments of Samnang Chhun

Thanks, I will keep my eyes on either one of these solution.

@beauby I couldn't find any doc on how to setup it with rails. I have few questions: 1. How do I setup to integrate with `Rails.cache`? 2. When I want...

I face the same situation with @akashkamboj. I got redirect loop when I go `http://api.example.com` ``` ruby config.middleware.use Rack::SslEnforcer, only_hosts: 'api.example.com' config.middleware.use Rack::SslEnforcer, only: ['/admin/login', %r{^/user/password}], ignore: %r{^/assets}, strict: true...

@borinmin Thanks for your times and put a lot of effort for this. It looks pretty nice how you structure your README of the project 👍 I am afraid to...

@kbaum I also have a scenario saving more data to Attachinary::File, have you found any way to do it yet?

Thank @tmm1 .

How could we render the 404 page with existing layout?

ariejan, how about using ERB?

@ariejan, I got an error because I have to pass binding object to ERB#result method instead of string.

After I investigate the issue, it seems `JSONAPI::Renderer::CachedResourcesProcessor::JSONString#to_json` is never run. ``` (byebug) { data: JSONAPI::Renderer::CachedResourcesProcessor::JSONString.new('{"id": "1"}') }.to_json "{\"data\":\"{\\\"id\\\": \\\"1\\\"}\"}" ``` What we expect the return value should be `"{\"data\":{\"id\":...