Calvin Yu

Results 28 comments of Calvin Yu

I'm seeing this too, on a `has_one` with a `class_name:` option. When we test `reflection(resource_class, attr).class_name` from the console we do get the expected class name. I believe the issue...

I just ran into this issue as well. The issue is that `Wombat::Processing::Parser` defines a `page` accessor (https://github.com/felipecsl/wombat/blob/master/lib/wombat/processing/parser.rb#L24). Here's my workaround to the issue: ``` ruby # cannot use Wombat#crawl...

I've submitted a PR (#37) that addresses this. For `3-0-stable`, but the change should work on the newer branches as well.

@damianlegawiec #38 It looks like spree master has a `pre_tax_amount` field that's more appropriate to use.

I was able to fix this issue by installing libvips. The field is trying to show a variant and since libvips doesn't exist, it can't generate that variant, hence that...

@nbr I'm hesitant because of potential unintended side effects of using `URI.parse` for this purpose. Perhaps use another method to normalize this?

@nbr I left a comment after the last change (about parse errors in `URI.parse`) Also, having thought about this more, I’m thinking we should do this on initialization or at...

No, that's not functionality I had in mind when I developed it. I supposed if you could figure out how to access the middleware stack you could get to the...

Thinking about it some more that's not going to quite work - you'll probably want to create a new `Rack::Cors` instance on every `call` to make sure you set all...