airrecord icon indicating copy to clipboard operation
airrecord copied to clipboard

Ruby wrapper for Airtable, your personal database

Results 16 airrecord issues
Sort by recently updated
recently updated
newest added

The Airtable API now supports creating, updating, and deleting up to 10 records per request. Is this something Airrecord should support? The documentation at [airtable.com/api](https://airtable.com/api) shows examples. I was the...

Airtable supports batched requests for a number of operations. I would link to the docs but I can't seem to find any version of the docs that aren't base-specific. Regardless,...

I was unable to create a record in my `Sale` model. Then I found that it's because I have a relationship named `client` and I think it's collisioning with [Airrecord::Table.client](https://github.com/sirupsen/airrecord/blob/master/lib/airrecord/table.rb#L9-L12)....

Is there a way to stub out data with these Airtable model methods? Right now if I do something like `Airtable::Model.find_by(id: {ID})` it returns nil in a test where I...

I have a multi-select field that has options: Yes, No, Confirmed. The field is set to ["Yes"], and I want to be set to ["Yes", "Confirmed"] I found that I...

This is not ready for merging, but I wanted to submit a proof of concept for https://github.com/sirupsen/airrecord/issues/66 in case somebody else wants to run with it. This enables an API...

I'm seeing ``` .../faraday-1.0.0/lib/faraday/dependency_loader.rb:21: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call .../airrecord-1.0.5/lib/airrecord/faraday_rate_limiter.rb:9: warning: The called method `initialize' is defined...

What are your thoughts on a `find_by_id` method that would mimic ActiveRecord in that it wouldn't throw an exception if the record is not found?

1.1

Airtable's node client lets you quickly instantiate a `base` and interact with its tables. We can do likewise. Node reference: ```js var Airtable = require('airtable'); var base = new Airtable({apiKey:...

1.1

It looks like we're no longer setting `conn.adapter = :net_http_persistent` in `Airrecord::Client`. This doesn't trigger any test failures, but it does make Airrecord unable to make real network requests! I...

bug
1.1