Mike Fotinakis

Results 41 comments of Mike Fotinakis

👍 need tags so that we can use version numbers instead of commit SHAs!

Would like this! Just hit a problem because subprocess rubygems version is out of date.

May or not be related, but I'm currently seeing a lot of Ruby segfaults like this: ruby/2.2.0/gems/redis-3.2.1/lib/redis/connection/ruby.rb:49: [BUG] object allocation during garbage collection phase

I definitely agree with this issue — I've found that the redis-rb library can easily consume the limited number of connections I'm paying for on a third-party redis service, and...

I have also manually added a bunch of `redis.disconnect!` calls around our application to mitigate this.

Ping here, any ideas or direction on this? We want to be able to use custom fonts with Stripe Elements, which require the ability to pass initialization options.

I think you might be misunderstanding, `parent_name` is not part of the [JSON-API spec](http://jsonapi.org/) so it's not an option we support on has_one or has_many. What is the result you...

Can you use `context` instead? Like: `JSONAPI::Serializer.serialize(post, context: {parent: 'from_post'})` — you can then check `context[:parent]` inside the serializer to make changes. This is an undocumented feature because it is...

Hey @Jesterovskiy, sorry I don't totally understand what the goal is here. I think `context` handling may solve your problem, so I will add documentation for that and you can...

jsonapi-serializers is almost 100% ORM agnostic, so I don't think this is something we should handle on our end. :/ I think you could do something like this though: ```ruby...