ruby-trello
ruby-trello copied to clipboard
Implementation of the Trello API for Ruby
#### What does this PR do? Just adds the latest generally available Ruby to the build matrix. ##### Why are we doing this? Any context or related work? We run...
Hello, On my app, I need to fetch all boards of my organization workspace and not only the boards that my API user has joined. To do this I had...
Hello - I'd like to submit a pull request but I'm struggling with running tests. I followed the instructions on integration_test.rb but at point 3 I get "To access this...
I'm trying to make sense of the documentation for [multiple users](https://github.com/jeremytregunna/ruby-trello#multiple-users). For example, it includes: ```ruby Thread.new do @client_bob.find(:boards, "bobs_board_id") end ``` If I've created `@client_bob` as an instance of...
With all these things like ```ruby @configuration ||= Configuration.new ``` it's not thread-safe. WDYT about using [dry-configurable](http://dry-rb.org/gems/dry-configurable/)?
As a developer, I expect `refresh!` to update the caller with the most recent data available from the Trello API. I discovered this not to be the case while working...
Forgive me if this exists and I couldn't find it, but I think it would be awesome if an HTTP cache of some sort existed with the client so that...
At this point it's not possible to use more complex queries to reduce the number of requests and improve the overall performance. Ex. In Javascript I can do this: ```...
Hi, is there a way to paginate over results and hook into the pagination process? One of the boards I am importing seems to be overflowing my app's memory limit,...
Hi, I've go to the point where I run into Trello::Error's for rate limits frequently and now I have to put every single call into some sort of retry block....