{"id":20858761,"url":"https://github.com/wakematta/meaning_cloud","last_synced_at":"2025-10-06T11:36:48.444Z","repository":{"id":56883129,"uuid":"151409236","full_name":"WaKeMaTTa/meaning_cloud","owner":"WaKeMaTTa","description":"Meaning Cloud API's wrapper (gem)","archived":false,"fork":false,"pushed_at":"2019-05-04T16:51:25.000Z","size":19,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-24T14:28:33.383Z","etag":null,"topics":["api","gem","meaningcloud","ruby","wrapper","wrapper-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/WaKeMaTTa.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-10-03T12:30:02.000Z","updated_at":"2019-05-04T16:53:17.000Z","dependencies_parsed_at":"2022-08-20T22:31:05.209Z","dependency_job_id":null,"html_url":"https://github.com/WaKeMaTTa/meaning_cloud","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaKeMaTTa%2Fmeaning_cloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaKeMaTTa%2Fmeaning_cloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaKeMaTTa%2Fmeaning_cloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaKeMaTTa%2Fmeaning_cloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WaKeMaTTa","download_url":"https://codeload.github.com/WaKeMaTTa/meaning_cloud/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225130753,"owners_count":17425506,"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":["api","gem","meaningcloud","ruby","wrapper","wrapper-api"],"created_at":"2024-11-18T04:47:23.068Z","updated_at":"2025-10-06T11:36:43.384Z","avatar_url":"https://github.com/WaKeMaTTa.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MeaningCloud\n\nMeaning Cloud Ruby API Wrapper\n\n[![Build Status](https://travis-ci.org/WaKeMaTTa/meaning_cloud.svg?branch=master)](https://travis-ci.org/WaKeMaTTa/meaning_cloud)\n[![Maintainability](https://api.codeclimate.com/v1/badges/259a7a056d212cf3e27d/maintainability)](https://codeclimate.com/github/WaKeMaTTa/meaning_cloud/maintainability)\n![GitHub](https://img.shields.io/github/license/wakematta/meaning_cloud.svg)\n\nThis gem is a ruby API wrapper for [Meaning Cloud](https://www.meaningcloud.com/) [API's](https://www.meaningcloud.com/developer/getting-started).\n\n## Security\n\nMultifactor authentication:\n\n![Security github.com account](https://img.shields.io/badge/github.com-enabled-brightgreen.svg)\n![Security rubygems.org account](https://img.shields.io/badge/rubygems.org-enabled-brightgreen.svg)\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'meaning_cloud'\n```\n\nAnd then execute:\n\n```bash\n$ bundle\n```\n\nOr install it yourself as:\n\n```bash\n$ gem install meaning_cloud\n```\n\n## Usage\n\n### Pre-requirement\n\nYou need a valid `key` to use the gem. You can get it by signing up [here](https://www.meaningcloud.com/developer/getting-started).\n\nIf you don't set the `key` it will *raises an exception*.\n\n### Configuration\n\nYou can use add initializer for example if you're on Rails.\n\n```ruby\n# config/initializers/meaning_cloud.rb\n\nMeaningCloud.configure do |config|\n  config.key = ENV['MEANING_CLOUD_KEY']                       # REQUIRED\n  config.language = :en                                       # optional, default is :en\n  config.topic_types = 'ec'                                   # optional, default is 'ec'\n  config.api_base = 'https://api.meaningcloud.com/topics-2.0' # optional, default is 'https://api.meaningcloud.com/topics-2.0'\nend\n```\n\n### Extract topics\n\n```ruby\n# Returns a hash of the parsed JSON result.\nresult = MeaningCloud::Topics.extract_topics(txt: 'The most amazing text in the world')\n```\nSource [source](https://www.meaningcloud.com/developer/topics-extraction/doc/2.0/examples)\n\n## Status of the gem\n\nCurrent version only wraps the Topics extraction API's and is focused on specific usage. Feel free to send a pull request with more API's wrapped!\n\nThe current gem is based in [TailorBrands/meaning-cloud](https://github.com/TailorBrands/meaning-cloud)\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at [meaning_cloud repository](https://github.com/wakematta/meaning_cloud). 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\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the MeaningCloud project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/meaning_cloud/blob/master/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwakematta%2Fmeaning_cloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwakematta%2Fmeaning_cloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwakematta%2Fmeaning_cloud/lists"}