google-drive-ruby
google-drive-ruby copied to clipboard
A Ruby library to read/write files/spreadsheets in Google Drive/Docs.
# OAuth out-of-band (oob) flow will be deprecated https://developers.googleblog.com/2022/02/making-oauth-flows-safer.html https://github.com/gimite/google-drive-ruby/blob/55b996b2c287cb0932824bf2474248a498469328/lib/google_drive/session.rb#L158 New OAuth usage will be blocked for the OOB flow  Can we migrate to an alternative flow? https://developers.google.com/identity/protocols/oauth2/native-app#redirect-uri_loopback
This appears to be a not-especially-breaking bump - they've just changed the versioning scheme. Still testing it out.
I have a spreadsheet with a text value and hyperlink, im trying to get the hyperlink value ```ruby p ws.[1, 1] # => " Text Value" p ws.input_value(1, 1) #...
When I try to authenticate the app for the first time through a browser I am seeing an "App blocked" message.
The [gemspec for google-drive-ruby](https://github.com/gimite/google-drive-ruby/blob/55b996b2c287cb0932824bf2474248a498469328/google_drive.gemspec#L19) requires `googleauth` gem to be `< 1.0.0`. `googleauth` had a [1.0.0 release] on Sep 27 2021, and a 1.1.0 release on Oct 25 2021. There don't...
https://github.com/gimite/google-drive-ruby/issues/360
The `borders` argument is expecting a Hash, in Ruby 3 arguments changed the keyword params syntax. See: https://www.ruby-lang.org/en/news/2019/12/12/separation-of-positional-and-keyword-arguments-in-ruby-3-0/
I am using google_drive gem in my project. Included in gem file: gem "google_drive", "~> 2.0" I am getting the following error. Please help. LoadError: cannot load such file --...
Feature request: Add support for [shared drives](https://support.google.com/a/answer/7212025?hl=en). If this is available now, I wasn't able to find documentation for it. It looks like Team Drive support was added a couple...