{"id":18728722,"url":"https://github.com/rubyonworld/mailerlite-ruby","last_synced_at":"2026-04-24T12:33:40.683Z","repository":{"id":174007993,"uuid":"542158211","full_name":"RubyOnWorld/mailerlite-ruby","owner":"RubyOnWorld","description":"A Ruby gem which helps to communicate with MailerLite API.","archived":false,"fork":false,"pushed_at":"2023-09-04T15:18:09.000Z","size":154,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-04T08:20:32.457Z","etag":null,"topics":["api","communicate","gem","lite","miler","ruby"],"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/RubyOnWorld.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null}},"created_at":"2022-09-27T15:29:31.000Z","updated_at":"2022-09-28T04:03:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"13ff29c6-516b-44a7-83be-1e1914fd9ef0","html_url":"https://github.com/RubyOnWorld/mailerlite-ruby","commit_stats":null,"previous_names":["rubyonworld/mailerlite-ruby"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RubyOnWorld/mailerlite-ruby","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fmailerlite-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fmailerlite-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fmailerlite-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fmailerlite-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RubyOnWorld","download_url":"https://codeload.github.com/RubyOnWorld/mailerlite-ruby/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RubyOnWorld%2Fmailerlite-ruby/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32224133,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"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","communicate","gem","lite","miler","ruby"],"created_at":"2024-11-07T14:23:54.304Z","updated_at":"2026-04-24T12:33:40.677Z","avatar_url":"https://github.com/RubyOnWorld.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MailerLite API v2 Ruby wrapper\n\nA Ruby gem which helps to communicate with [MailerLite][mailerlite] API.\n\n[![Gem Version](https://img.shields.io/gem/v/mailerlite.svg?style=flat-square)][rubygems]\n[![Coverage Status](https://img.shields.io/codecov/c/github/jpalumickas/mailerlite-ruby?style=flat-square)][codecov]\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'mailerlite'\n```\n\n## Usage\n\nBefore making any request, you should authenticate first. Use the response object to\nmake requests afterward.\nSee [create a campaign][create_a_campaign] example.\n\n### Authentication\n\nWhen you sign up for an account, you are given an **API key**. You authenticate to\nthe [MailerLite][mailerlite] API by providing your API key in the request.\nYou can find your API key in page: Integrations » Developer API.\n\n```ruby\nclient = MailerLite::Client.new(api_key: 'my-secret-api-key')\n```\n\nExample:\n\n```ruby\nclient.groups\n```\n\nOr create file under `config/initializers/mailerlite.rb`\n\n```ruby\nMailerLite.configure do |config|\n  config.api_key = 'my-secret-api-key'\n  # config.timeout = 10\nend\n```\n\nWhen you configured global settings in file, then you can request methods\non `MailerLite` class directly.\n\nExample:\n\n```ruby\nMailerLite.campaigns\n```\n\nSee more documentation in [examples][examples] directory.\n\n## Supported Ruby Versions\n\nThis library aims to support and is [tested against][github_actions] the following Ruby\nimplementations:\n\n* Ruby 2.6.0\n* Ruby 2.7.0\n* Ruby 3.0.0\n* Ruby 3.1.0\n* Truffleruby\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License][license].\n\n[rubygems]: https://rubygems.org/gems/mailerlite\n[codecov]: https://codecov.io/gh/jpalumickas/mailerlite-ruby\n[github_actions]: https://github.com/jpalumickas/mailerlite-ruby/actions\n\n[license]: https://raw.githubusercontent.com/jpalumickas/mailerlite-ruby/master/LICENSE\n[create_a_campaign]: https://raw.githubusercontent.com/jpalumickas/mailerlite-ruby/master/examples/create_campaign.md\n[examples]: https://github.com/jpalumickas/mailerlite-ruby/tree/master/examples\n\n[mailerlite]: https://www.mailerlite.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyonworld%2Fmailerlite-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubyonworld%2Fmailerlite-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubyonworld%2Fmailerlite-ruby/lists"}