{"id":27498317,"url":"https://github.com/tarta-ai/tartaapi-ruby","last_synced_at":"2026-02-13T02:47:53.806Z","repository":{"id":281824938,"uuid":"946420659","full_name":"tarta-ai/TartaAPI-ruby","owner":"tarta-ai","description":"TartaAPI-Ruby is a Ruby gem facilitating seamless connection to Tarta's AI-enhanced job search features, perfectly suited for Ruby applications.","archived":false,"fork":false,"pushed_at":"2025-03-11T12:55:50.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-12T16:59:05.292Z","etag":null,"topics":["api-wrapper","job-search","ruby","rubygems"],"latest_commit_sha":null,"homepage":"https://tarta.ai","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/tarta-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"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}},"created_at":"2025-03-11T05:36:56.000Z","updated_at":"2025-03-11T16:10:57.000Z","dependencies_parsed_at":"2025-03-11T10:50:51.621Z","dependency_job_id":null,"html_url":"https://github.com/tarta-ai/TartaAPI-ruby","commit_stats":null,"previous_names":["tarta-ai/tartaapi-ruby"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarta-ai%2FTartaAPI-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarta-ai%2FTartaAPI-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarta-ai%2FTartaAPI-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarta-ai%2FTartaAPI-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tarta-ai","download_url":"https://codeload.github.com/tarta-ai/TartaAPI-ruby/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249326182,"owners_count":21251735,"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-wrapper","job-search","ruby","rubygems"],"created_at":"2025-04-17T08:31:35.287Z","updated_at":"2026-02-13T02:47:53.747Z","avatar_url":"https://github.com/tarta-ai.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TartaAPI-Ruby\n\n## Overview\nTartaAPI-Ruby is a Ruby wrapper for the Tarta API, designed to seamlessly integrate AI-powered job search functionality into your applications.\n\n## API Documentation\nFor detailed API documentation, visit:  \n[Tarta API Documentation](https://api.tarta.ai/swagger/index.html)\n\n## What is Tarta?\nTarta.ai is a sophisticated AI platform that consolidates job listings from a wide range of sources, including job boards and social media. The platform streamlines the job search experience, matching users with suitable vacancies and even facilitating interview scheduling.\n\nTo learn more, visit:  \n[Tarta Official Website](https://tarta.ai/)\n\n## ChatGPT Integration\nTarta is also available as a ChatGPT plugin to enhance your job search experience:  \n[Tarta ChatGPT Plugin](https://chat.openai.com/g/g-Gkf9YM4sR-job-search-in-the-us)\n\n## Installation\nTo install TartaAPI-Ruby, add this line to your Gemfile:\n```ruby\ngem 'tarta-api'\n```\nThen, execute:\n```sh\nbundle install\n```\nOr install it yourself with:\n```sh\ngem install tarta-api\n```\n\n## Usage Example\nHere's a simple example demonstrating how to use the library to execute a job search:\n\n```ruby\nrequire 'tarta_api'\n\ndef search_jobs(title, size = 5)\n  request = TartaAPI::JobSearchRequest.new(title: title, size: size)\n  \n  begin\n    results = TartaAPI::JobSearchService.search_jobs(request)\n    jobs = results[:jobs] || []\n\n    if jobs.empty?\n      puts \"No job results found.\"\n      return\n    end\n\n    puts \"Job Search Results:\"\n    jobs.each do |job|\n      job_name = job[:name] || \"N/A\"\n      company = job[:companyName] || \"N/A\"\n      location = job[:location] || {}\n      city = location[:city] || \"Unknown\"\n      state = location[:state] || \"Unknown\"\n      country = location[:country] || \"Unknown\"\n      source = job[:feed] || \"N/A\"\n      posted_date = job[:created] || \"N/A\"\n\n      puts \"Job: #{job_name} at #{company}\"\n      puts \"Location: #{city}, #{state}, #{country}\"\n      puts \"Source: #{source}\"\n      puts \"Posted: #{posted_date}\\n\"\n    end\n\n  rescue StandardError =\u003e e\n    puts \"Error fetching job results: #{e.message}\"\n  end\nend\n\nsearch_jobs(\"ruby\", 2)\n```\n\n## Key Features\n- **Effortless API Integration**: Interact with Tarta's API using straightforward Ruby methods.\n- **AI Matching**: Utilize AI algorithms to find jobs that align with user profiles and preferences.\n- **Interview Scheduling**: Automate interview scheduling to streamline the application process.\n\n## Contributions\nContributions are welcome! Feel free to open issues or submit pull requests to enhance the library.\n\n## License\nThis project is under the MIT License.\n\n---\nExperience the efficiency of Tarta and integrate AI-powered job search into your Ruby applications today!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftarta-ai%2Ftartaapi-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftarta-ai%2Ftartaapi-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftarta-ai%2Ftartaapi-ruby/lists"}