{"id":20481176,"url":"https://github.com/argus-api-team/activestorage-openstack","last_synced_at":"2026-04-24T03:32:24.293Z","repository":{"id":34297146,"uuid":"160480777","full_name":"argus-api-team/activestorage-openstack","owner":"argus-api-team","description":"OpenStack service for ActiveStorage without any dependencies.","archived":false,"fork":false,"pushed_at":"2023-03-08T19:58:37.000Z","size":320,"stargazers_count":3,"open_issues_count":21,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-24T22:54:58.097Z","etag":null,"topics":["activestorage","openstack","rails"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/argus-api-team.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"MIT-LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2018-12-05T07:49:44.000Z","updated_at":"2023-01-31T17:08:09.000Z","dependencies_parsed_at":"2023-07-12T16:08:07.105Z","dependency_job_id":null,"html_url":"https://github.com/argus-api-team/activestorage-openstack","commit_stats":null,"previous_names":["mickael-palma-argus/activestorage-openstack"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/argus-api-team/activestorage-openstack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argus-api-team%2Factivestorage-openstack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argus-api-team%2Factivestorage-openstack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argus-api-team%2Factivestorage-openstack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argus-api-team%2Factivestorage-openstack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/argus-api-team","download_url":"https://codeload.github.com/argus-api-team/activestorage-openstack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argus-api-team%2Factivestorage-openstack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32208252,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T03:15:14.334Z","status":"ssl_error","status_checked_at":"2026-04-24T03:15:11.608Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["activestorage","openstack","rails"],"created_at":"2024-11-15T16:07:13.801Z","updated_at":"2026-04-24T03:32:24.018Z","avatar_url":"https://github.com/argus-api-team.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Gem Version](https://badge.fury.io/rb/activestorage_openstack.svg)](https://badge.fury.io/rb/activestorage_openstack) [![Maintainability](https://api.codeclimate.com/v1/badges/75b77a2b9d9b42496264/maintainability)](https://codeclimate.com/github/argus-api-team/activestorage-openstack/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/75b77a2b9d9b42496264/test_coverage)](https://codeclimate.com/github/argus-api-team/activestorage-openstack/test_coverage) [![Build Status](https://travis-ci.org/argus-api-team/activestorage-openstack.svg?branch=master)](https://travis-ci.org/argus-api-team/activestorage-openstack) [![Dependabot Status](https://api.dependabot.com/badges/status?host=github\u0026repo=argus-api-team/activestorage-openstack)](https://dependabot.com)\n\n# Active Storage OpenStack service\n\nActive Storage facilitates uploading files to a cloud storage service like Amazon S3, Google Cloud Storage, or Microsoft Azure Storage and attaching those files to Active Record objects.\n\nThis gem adds support for the OpenStack [Object Storage API](https://developer.openstack.org/api-ref/object-store/).\n\nThe goal is to interact with the OpenStack API without any third party tools (Swift, Fog...).\n\nWe use the standard [Net::HTTP](https://ruby-doc.org/stdlib/libdoc/net/http/rdoc/Net/HTTP.html) ruby library.\n\nWe stay up-to-date with the [Ruby](https://www.ruby-lang.org/en/downloads/releases/) and [Rails](https://weblog.rubyonrails.org/releases/) versions.\n\n## Getting Started\n\nIn your `Gemfile` add this line:\n\n```ruby\ngem 'activestorage_openstack'\n```\n\n### Prerequisites\n\nIn your Rails `config/storage.yml` file add your OpenStack configuration:\n\n```yml\nopenstack:\n  service: Openstack\n  container: __container__\n  authentication_url: __authentication_url__\n  region: __region__\n  credentials:\n    username: __username__\n    api_key: __api_key__\n    temporary_url_key: __temporary_url_key__\n```\n\nThen add to your `config/environments/*.rb` files:\n\n```ruby\nRails.application.configure do\n  ...\n  config.active_storage.service = :openstack\n  ...\nend\n```\n\n### Installing\n\nIf you want to add features to the gem, clone the repository and use Docker:\n\n```bash\n$ git clone https://github.com/argus-api-team/activestorage-openstack.git\n$ cd activestorage-openstack\n$ docker image build -t activestorage_openstack .\n```\n\n## Running the tests\n\nWe use the [Guard](https://github.com/guard/guard) gem to run tests:\n\n```bash\n$ docker container run -e RAILS_ENV=test -v $(pwd):/app -it activestorage_openstack guard -g red_green_refactor -c\n```\n\nThe `red_green_refactor` Guard group means:\n* It runs Rspec tests with [Spring](https://github.com/rails/spring).\n* It watches `Gemfile` for changes.\n* It uses [Rubocop](https://github.com/rubocop-hq/rubocop) and [Reek](https://github.com/troessner/reek) for linting/coding style.\n\nSee [Guardfile](Guardfile) for details.\n\n## Built with\n\n* [Net::HTTP](https://ruby-doc.org/stdlib/libdoc/net/http/rdoc/Net/HTTP.html) - From the standard Ruby Library.\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.\n\n## Versioning\n\nWe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/your/project/tags).\n\n## Authors\n\n* **Mickael PALMA** - *Initial work* - [mickael-palma-argus](https://github.com/mickael-palma-argus)\n\nSee also the list of [contributors](https://github.com/argus-api-team/activestorage-openstack/graphs/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [MIT-LICENSE](MIT-LICENSE) file for details\n\n## Acknowledgments\n\n* Inspiration from [@chaadow's](https://github.com/chaadow) [activestorage-openstack plugin](https://github.com/chaadow/activestorage-openstack)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargus-api-team%2Factivestorage-openstack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fargus-api-team%2Factivestorage-openstack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargus-api-team%2Factivestorage-openstack/lists"}