Ruby API Client
Ruby integration handles uploads and file operations by wrapping Uploadcare Upload API and REST API. This comprehensive API client lets you use most of the Uploadcare features from within your Ruby app.
Features
Uploading (Upload API):
- Upload files from local storage and URLs (up to 5 TB)
- Multipart uploading for large files
- Uploading network to speed uploading jobs (like CDN)
File management (REST API):
- Get file info and perform various operations (store/delete/copy) with them
- Work with groups of files
- Get info about account project
- Manage webhooks
- Convert documents
- Encode and transform videos
Image processing (URL API):
- Compression
- Geometry
- Colors
- Definition
- Image and text overlays
- Rotations
- Recognition
- File info
- Proxy (fetch)
Security features:
- Secure authentication
- Secure uploads (signed uploads)
- Secure delivery (signed URLs)
- Secure webhooks (signing secret)
Requirements
- Ruby 2.7+
Note that uploadcare-ruby
3.x is not backward compatible with
2.x.
Install
Add this line to your application’s Gemfile:
And then execute:
If you use api_struct
gem in your project, replace it with uploadcare-api_struct
:
and run bundle install
.
If already not, create your project in Uploadcare dashboard and copy your API keys from there.
Set your Uploadcare keys in config file or through environment variables:
Or configure your app yourself if you are using different way of storing keys.
Gem configuration is available in Uploadcare.configuration
. Full list of
settings can be seen in lib/uploadcare.rb
Usage example
This section contains practical usage examples. Please note, everything that follows gets way more clear once you’ve looked through our docs.
Uploading and storing a single file
Using Uploadcare is simple, and here are the basics of handling files.
Your might then want to store or delete the uploaded file. Storing files could be crucial if you aren’t using the “Automatic file storing” option for your Uploadcare project. If not stored manually or automatically, files get deleted within a 24-hour period.
Uploads
Uploadcare supports multiple ways to upload files:
There are explicit ways to select upload type:
Upload options
You can override global :autostore
option for each upload request:
Api
Most methods are also available through Uploadcare::Api
object:
Entity object
Entities are representations of objects in Uploadcare cloud.
File
File entity contains its metadata.
Metadata of deleted files is stored permanently.
FileList
Uploadcare::Entity::FileList
represents the whole collection of files (or it’s
subset) and provides a way to iterate through it, making pagination transparent.
FileList objects can be created using Uploadcare::Entity.file_list
method.
Full documentation
Read the full documentation on GitHub.