{"id":19140971,"url":"https://github.com/gridscale/fog-gridscale","last_synced_at":"2025-07-06T14:03:58.926Z","repository":{"id":56847374,"uuid":"179440989","full_name":"gridscale/fog-gridscale","owner":"gridscale","description":"A library that can be used as a module for fog or as standalone gridscale provider","archived":false,"fork":false,"pushed_at":"2020-03-03T12:11:13.000Z","size":144,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2025-07-06T14:03:49.396Z","etag":null,"topics":["gridscale","ruby","ruby-gem"],"latest_commit_sha":null,"homepage":"https://gridscale.io","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/gridscale.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-04T07:04:47.000Z","updated_at":"2020-03-03T12:11:16.000Z","dependencies_parsed_at":"2022-09-12T11:44:21.646Z","dependency_job_id":null,"html_url":"https://github.com/gridscale/fog-gridscale","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/gridscale/fog-gridscale","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridscale%2Ffog-gridscale","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridscale%2Ffog-gridscale/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridscale%2Ffog-gridscale/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridscale%2Ffog-gridscale/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gridscale","download_url":"https://codeload.github.com/gridscale/fog-gridscale/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridscale%2Ffog-gridscale/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263914042,"owners_count":23529075,"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":["gridscale","ruby","ruby-gem"],"created_at":"2024-11-09T07:19:38.182Z","updated_at":"2025-07-06T14:03:58.908Z","avatar_url":"https://github.com/gridscale.png","language":"Ruby","readme":"# Fog::Gridscale\n\nThis is the plugin Gem to talk to [gridscale](https://gridscale.io/) clouds via fog.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'fog-gridscale'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install fog-gridscale\n\n## Usage\n\n### Initial Setup\n\n\n# Getting started: the compute service\n\nYou'll need a gridscale account, user uuid and an API token to use this provider.\n\nGet one from https://my.gridscale.io/APIs/\n\nWrite down the Access Token.\n\n## Connecting, retrieving and managing server objects\n\n.\n\nFirst, create a connection to the host:\n\n```ruby\nrequire 'fog/gridscale'\nrequire 'pp'\ngridscale = Fog::Compute.new({\n                              :provider =\u003e 'gridscale',\n                              :api_token =\u003e  'your token',\n                              :user_uuid =\u003e 'your user uuid',\n\n                          })\n```\n\n\n## Listing servers\n\nListing servers and attributes:\n\n```ruby\ngridscale.servers.each do |server|\n  puts server.object_uuid\n  puts server.name\n  puts server.cores\n  puts server.memory\nend\n```\n\n## Server creation\n\nCreating a new server:\n\n```ruby\nserver = gridscale.servers.create :name =\u003e 'foobar',\n                               :cores  =\u003e 2,\n                               :memory =\u003e 4,\n                               \n```\n\n## Get a server\n```ruby\ngridscale.servers.get(server_uuid)\n```\n\n## Update a server\n```ruby\ngridscale.server_update(server_uuid, payload)\n\n```\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgridscale%2Ffog-gridscale","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgridscale%2Ffog-gridscale","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgridscale%2Ffog-gridscale/lists"}