Stephen Hanson
Stephen Hanson
I am also seeing warnings from my vendor CSS files when I run `ember build`. Would definitely make sense to ignore these. I'm on the latest, 0.4.1. ``` Building.. autoprefixer:...
I found that if I click out of my editor, the Emmet key bindings are disabled and the Eclipse key bindings work. I am doing this as a work-around for...
We were able to somewhat work around this issue on my current project by inserting an option at the top of the list of options and using it as the...
I'd also love to see this. It doesn't seem thread-safe to modify the global configuration for each request. My initial naive solution was to modify `Client` to pass `site_ids` to...
I ended up monkey-patching some of the classes in my app to allow passing `site_id` or `site_ids` to any of the operations. Some of the operations disallow passing params, so...
@wingrunr21 interesting. So basically, allow targeting a specific site_ids per call, but only if the site_ids are predefined in the configuration? In my case, I have potentially hundreds of studios...
The site I work with also integrates with a different booking platform, and I made a simple little Faraday client for that one and do what you described—one off instances...
That sounds good to me. I'm reminded of [Gibbon](https://github.com/amro/gibbon), the Ruby Mailchimp client, which uses a similar pattern. With Gibbon, you can just make requests using class methods, which use...
@daidekman this gem currently [hard-codes the Site ID](https://github.com/wingrunr21/mindbody-api/blob/master/lib/mindbody-api/client.rb#L26) to whatever was specified in your configuration block, so it will not work for this use-case without modification. The only solutions right...
@wingrunr21 The reason I haven't submitted a PR yet and opened this thread is because I doubt my current approach is the best approach universally and was wanting to determine...