{"id":22203823,"url":"https://github.com/agnel/webceo","last_synced_at":"2026-05-15T13:33:20.284Z","repository":{"id":56897927,"uuid":"127398960","full_name":"agnel/webceo","owner":"agnel","description":"Client Library for Webceo API","archived":false,"fork":false,"pushed_at":"2018-04-14T09:20:22.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T01:06:41.447Z","etag":null,"topics":["api-client","api-wrapper","ruby","ruby-gem","webceo","webceo-api"],"latest_commit_sha":null,"homepage":null,"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/agnel.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-03-30T07:51:25.000Z","updated_at":"2023-04-04T17:49:06.000Z","dependencies_parsed_at":"2022-08-21T02:20:30.543Z","dependency_job_id":null,"html_url":"https://github.com/agnel/webceo","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/agnel/webceo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agnel%2Fwebceo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agnel%2Fwebceo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agnel%2Fwebceo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agnel%2Fwebceo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agnel","download_url":"https://codeload.github.com/agnel/webceo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agnel%2Fwebceo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33068493,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["api-client","api-wrapper","ruby","ruby-gem","webceo","webceo-api"],"created_at":"2024-12-02T17:14:32.207Z","updated_at":"2026-05-15T13:33:20.266Z","avatar_url":"https://github.com/agnel.png","language":"Ruby","funding_links":["https://liberapay.com/agnelwaghela/donate"],"categories":[],"sub_categories":[],"readme":"# Webceo\n\n[![Gem Version](https://badge.fury.io/rb/webceo.svg)][gem_version]\n[![Gem](https://img.shields.io/gem/dv/webceo/stable.svg)][gem_downloads]\n![GitHub tag](https://img.shields.io/github/tag/agnel/webceo.svg)\n[![Liberapay receiving](https://img.shields.io/liberapay/receives/agnelwaghela.svg)][liberapay_donate_link]\n\n[gem_version]: https://badge.fury.io/rb/webceo\n[gem_downloads]: https://rubygems.org/gems/webceo\n[liberapay_donate_link]: https://liberapay.com/agnelwaghela/donate\n\nIntegrate your ruby application with this `webceo` gem to perform the api action using your webceo account. Take a look at the [Webceo API Reference](https://www.webceo.com/api-documentation.htm).\n\n## Getting Started\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'webceo'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install webceo\n\nand run the following generator to install the initializer\n\n    $ rails generate webceo:install\n\n## Usage\n\n```ruby\n\n# Configure the gem\nWebceo.configure do |config|\n  # set the api_key option as per your convenience, for example using environment variables\n  config.api_key = ENV['WEBCEO_API_KEY']\nend\n\n# initialize an instance of the Client\nclient = Webceo::Api::Client.new\n\n# get the list of all methods\nclient.list_methods # =\u003e ['get_projects', 'get_project', ...]\n\n# get list of all the projects, see api reference\nclient.get_projects({ :id =\u003e 'my_request_id' })\n# =\u003e [{:id=\u003e'my_request_id', :data=\u003e[{:project=\u003e\"8ady5y7e36\", :domain=\u003e\"example.com\", :user=\u003e[\"user1@yoursite.com\", \"user2@yoursite.com\", ... ]}, {:project=\u003e\"asg4563wef\", :domain=\u003e\"example.com\", :user=\u003e[\"user3@yoursite.com\", \"user4@yoursite.com\", ... ]}], :method=\u003e\"get_projects\"}]\n\n# get a single project\nclient.get_project({ :project =\u003e '8ady5y7e36' })\n# =\u003e [{:id=\u003enil, :data=\u003e{:project=\u003e\"8ady5y7e36\", :domain=\u003e\"example.com\", :user=\u003e[\"user1@yoursite.com\", \"user2@yoursite.com\", ... ]}, :method=\u003e\"get_projects\"}]\n\n```\n\n## Contributing\n\n[![Open Source Helpers](https://www.codetriage.com/agnel/webceo/badges/users.svg)][open_source_helpers]\n![Maintenance](https://img.shields.io/maintenance/yes/2018.svg)\n\n[open_source_helpers]: https://www.codetriage.com/agnel/webceo\n\nBug reports and pull requests are welcome on GitHub at https://github.com/agnel/webceo. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\nCheck out the [Webceo Ruby Gem Google Group](https://groups.google.com/forum/#!forum/webceo-api-client/)\n\n\n## License\n\n[![license](https://img.shields.io/github/license/agnel/webceo.svg)][mit_license]\n\n[mit_license]: http://opensource.org/licenses/MIT\n\nWebceo is released under the [MIT License](http://opensource.org/licenses/MIT).\n\n## Todo\n\n- [x] Configuration Support [#1]\n- [x] Generator for initializer with configuration boilerplate [#2]\n- [ ] Batch Operations Support\n- [ ] Specs\n\n[#1]: https://github.com/agnel/webceo/pull/1\n[#2]: https://github.com/agnel/webceo/pull/2\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagnel%2Fwebceo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagnel%2Fwebceo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagnel%2Fwebceo/lists"}