{"id":13879087,"url":"https://github.com/cloudinary/cloudinary_gem","last_synced_at":"2025-12-28T20:51:21.369Z","repository":{"id":2536427,"uuid":"3513548","full_name":"cloudinary/cloudinary_gem","owner":"cloudinary","description":"Cloudinary GEM for Ruby on Rails integration","archived":false,"fork":false,"pushed_at":"2025-02-20T16:53:21.000Z","size":12116,"stargazers_count":419,"open_issues_count":29,"forks_count":284,"subscribers_count":37,"default_branch":"master","last_synced_at":"2025-04-09T19:10:31.981Z","etag":null,"topics":["cloudinary","cloudinary-gem","cloudinary-ruby-sdk","cloudinary-sdk","hacktoberfest","image-manipulation","ruby","ruby-gem","ruby-on-rails","sdk-ruby","video-manipulation"],"latest_commit_sha":null,"homepage":"https://cloudinary.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudinary.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-02-22T10:34:29.000Z","updated_at":"2025-03-23T06:25:27.000Z","dependencies_parsed_at":"2023-07-06T06:03:46.344Z","dependency_job_id":"700c0d59-3376-4340-aa4d-93cceae0d4c6","html_url":"https://github.com/cloudinary/cloudinary_gem","commit_stats":{"total_commits":848,"total_committers":82,"mean_commits":"10.341463414634147","dds":0.8325471698113207,"last_synced_commit":"c50fa141a713a767689c3abcd34066148e8e9c51"},"previous_names":[],"tags_count":73,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary_gem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary_gem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary_gem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary_gem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudinary","download_url":"https://codeload.github.com/cloudinary/cloudinary_gem/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251325967,"owners_count":21571624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloudinary","cloudinary-gem","cloudinary-ruby-sdk","cloudinary-sdk","hacktoberfest","image-manipulation","ruby","ruby-gem","ruby-on-rails","sdk-ruby","video-manipulation"],"created_at":"2024-08-06T08:02:09.384Z","updated_at":"2025-12-28T20:51:21.081Z","avatar_url":"https://github.com/cloudinary.png","language":"Ruby","readme":"[![Build Status](https://app.travis-ci.com/cloudinary/cloudinary_gem.svg?branch=master)](https://app.travis-ci.com/github/cloudinary/cloudinary_gem)\n[![Gem Version](https://badge.fury.io/rb/cloudinary.svg)](https://rubygems.org/gems/cloudinary)\n[![Gem Version](https://badgen.net/rubygems/dt/cloudinary)](https://rubygems.org/gems/cloudinary)\n\nCloudinary Ruby on Rails SDK\n===================\n\n## About\n\nThe Cloudinary Ruby on Rails SDK allows you to quickly and easily integrate your application with Cloudinary.\nEffortlessly optimize, transform, upload and manage your cloud's assets.\n\n#### Note\n\nThis Readme provides basic installation and usage information. For the complete documentation, see\nthe [Ruby on Rails SDK Guide](https://cloudinary.com/documentation/rails_integration).\n\n## Table of Contents\n\n- [Key Features](#key-features)\n- [Version Support](#Version-Support)\n- [Installation](#installation)\n- [Usage](#usage)\n    - [Setup](#Setup)\n    - [Transform and Optimize Assets](#Transform-and-Optimize-Assets)\n    - [CarrierWave Integration](#CarrierWave-Integration)\n    - [Active Storage Integration](#Active-Storage-Integration)\n\n## Key Features\n\n- [Transform](https://cloudinary.com/documentation/rails_video_manipulation#video_transformation_examples) and\n  [optimize](https://cloudinary.com/documentation/rails_image_manipulation#image_optimizations) assets.\n- Generate [image](https://cloudinary.com/documentation/rails_image_manipulation#deliver_and_transform_images) and\n  [video](https://cloudinary.com/documentation/rails_video_manipulation#rails_video_transformation_code_examples) tags.\n- [Asset Management](https://cloudinary.com/documentation/rails_asset_administration).\n- [Secure URLs](https://cloudinary.com/documentation/video_manipulation_and_delivery#generating_secure_https_urls_using_sdks)\n  .\n\n## Version Support\n\n| SDK Version | Ruby 1.9.3 | Ruby 2.x | Ruby 3.x | Ruby 4.x |\n|-------------|------------|----------|----------|----------|\n| 2.x         | ✘          | ✘        | ✔        | ✔        |\n| 1.x         | ✔          | ✔        | ✔        | ✘        |\n\n| SDK Version | Rails 5.x | Rails 6.x | Rails 7.x | Rails 8.x |\n|-------------|-----------|-----------|-----------|-----------|\n| 2.x         | ✘         | ✔         | ✔         | ✔         |\n| 1.x         | ✔         | ✔         | ✔         | ✘         |\n\n## Installation\n\n```bash\ngem install cloudinary\n```\n\n# Usage\n\n### Setup\n\n```ruby\nrequire 'cloudinary'\n```\n\n### Transform and Optimize Assets\n- [See full documentation](https://cloudinary.com/documentation/rails_image_manipulation).\n\n```ruby\n cl_image_tag(\"sample.jpg\", width: 100, height: 150, crop: \"fill\")\n```\n\n### Upload\n- [See full documentation](https://cloudinary.com/documentation/rails_image_and_video_upload).\n- [Learn more about configuring your uploads with upload presets](https://cloudinary.com/documentation/upload_presets).\n\n```ruby\nCloudinary::Uploader.upload(\"my_picture.jpg\")\n```\n\n### CarrierWave Integration\n- [See full documentation](https://cloudinary.com/documentation/rails_carrierwave).\n\n### Active Storage Integration\n- [See full documentation](https://cloudinary.com/documentation/rails_activestorage).\n\n### Security options\n- [See full documentation](https://cloudinary.com/documentation/solution_overview#security).\n\n### Samples\n - See [samples folder](https://github.com/cloudinary/cloudinary_gem/tree/master/samples).\n\n## Contributions\n - See [CONTRIBUTING](CONTRIBUTING.md).\n\n## Get Help\n\nIf you run into an issue or have a question, you can either:\n\n- Issues related to the SDK: [Open a GitHub issue](https://github.com/cloudinary/cloudinary_gem/issues).\n- Issues related to your account: [Open a support ticket](https://cloudinary.com/contact)\n\n## About Cloudinary\n\nCloudinary is a powerful media API for websites and mobile apps alike, Cloudinary enables developers to efficiently\nmanage, transform, optimize, and deliver images and videos through multiple CDNs. Ultimately, viewers enjoy responsive\nand personalized visual-media experiences—irrespective of the viewing device.\n\n## Additional Resources\n\n- [Cloudinary Transformation and REST API References](https://cloudinary.com/documentation/cloudinary_references):\n  Comprehensive references, including syntax and examples for all SDKs.\n- [MediaJams.dev](https://mediajams.dev/): Bite-size use-case tutorials written by and for Cloudinary Developers\n- [DevJams](https://www.youtube.com/playlist?list=PL8dVGjLA2oMr09amgERARsZyrOz_sPvqw): Cloudinary developer podcasts on\n  YouTube.\n- [Cloudinary Academy](https://training.cloudinary.com/): Free self-paced courses, instructor-led virtual courses, and\n  on-site courses.\n- [Code Explorers and Feature Demos](https://cloudinary.com/documentation/code_explorers_demos_index): A one-stop shop\n  for all code explorers, Postman collections, and feature demos found in the docs.\n- [Cloudinary Roadmap](https://cloudinary.com/roadmap): Your chance to follow, vote, or suggest what Cloudinary should\n  develop next.\n- [Cloudinary Facebook Community](https://www.facebook.com/groups/CloudinaryCommunity): Learn from and offer help to\n  other Cloudinary developers.\n- [Cloudinary Account Registration](https://cloudinary.com/users/register/free): Free Cloudinary account registration.\n- [Cloudinary Website](https://cloudinary.com): Learn about Cloudinary's products, partners, customers, pricing, and\n  more.\n\n## Licence\n\nReleased under the MIT license.\n","funding_links":[],"categories":["Tools","Ruby"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fcloudinary_gem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudinary%2Fcloudinary_gem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fcloudinary_gem/lists"}