{"id":33916436,"url":"https://github.com/dgonzdev/employ_me","last_synced_at":"2026-04-06T07:02:02.811Z","repository":{"id":319553683,"uuid":"1075603854","full_name":"dgonzdev/employ_me","owner":"dgonzdev","description":"Parse job listings.","archived":false,"fork":false,"pushed_at":"2025-11-16T20:54:01.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-02T21:22:55.617Z","etag":null,"topics":["ruby","rubygem"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dgonzdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-13T18:17:03.000Z","updated_at":"2025-11-16T20:54:05.000Z","dependencies_parsed_at":"2025-10-19T13:15:56.973Z","dependency_job_id":"a06ec30a-cd95-46d1-8608-d97eb57a834d","html_url":"https://github.com/dgonzdev/employ_me","commit_stats":null,"previous_names":["dgonzdev/employ_me"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dgonzdev/employ_me","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgonzdev%2Femploy_me","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgonzdev%2Femploy_me/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgonzdev%2Femploy_me/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgonzdev%2Femploy_me/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dgonzdev","download_url":"https://codeload.github.com/dgonzdev/employ_me/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgonzdev%2Femploy_me/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31463015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ruby","rubygem"],"created_at":"2025-12-12T07:20:30.683Z","updated_at":"2026-04-06T07:02:02.806Z","avatar_url":"https://github.com/dgonzdev.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# employ_me\n\nParse job listings.\n\n## Installation\n\nInstall it manually:\n\n```bash\ngem install employ_me\n```\n\nOr add it to your Gemfile:\n\n```ruby\ngem \"employ_me\"\n```\n\n## Usage\n\n### Location\n\nFind the location.\n\n```ruby\nrequire 'nokogiri'\nrequire 'employ_me'\n\nlisting = \u003c\u003c-HTML\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n  \u003chead\u003e\u003c/head\u003e\n  \u003cbody\u003e\n    \u003cdiv\u003eSan Francisco, CA\u003c/div\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\nHTML\n\ndocument = Nokogiri::HTML(listing)\n\nstate_code, city, state = EmployMe::Parser::Location::Strategies::PatternMatch.perform(document)\n```\n\n### Programming Language\n\nFind the programming language.\n\n```ruby\nrequire 'nokogiri'\nrequire 'employ_me'\n\nlisting = \u003c\u003c-HTML\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n  \u003chead\u003e\u003c/head\u003e\n  \u003cbody\u003e\n    \u003cdiv\u003eRuby\u003c/div\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\nHTML\n\ndocument = Nokogiri::HTML(listing)\n\nlanguage = EmployMe::Parser::ProgrammingLanguage::Strategies::PatternMatch.perform(document)\n```\n\n### Salary\n\nFind the salary.\n\n```ruby\nrequire 'nokogiri'\nrequire 'employ_me'\n\nlisting = \u003c\u003c-HTML\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n  \u003chead\u003e\u003c/head\u003e\n  \u003cbody\u003e\n    \u003cdiv\u003e$160,000 - $180,000\u003c/div\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\nHTML\n\ndocument = Nokogiri::HTML(listing)\n\nsalary_floor, salary_ceiling = EmployMe::Parser::Salary::Strategies::PatternMatch.perform(document)\n```\n\n### Technologies\n\nFind the technologies.\n\n```ruby\nrequire 'nokogiri'\nrequire 'employ_me'\n\nlisting = \u003c\u003c-HTML\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n  \u003chead\u003e\u003c/head\u003e\n  \u003cbody\u003e\n    \u003cdiv\u003eKafka\u003c/div\u003e\n    \u003cdiv\u003eKubernetes\u003c/div\u003e\n    \u003cdiv\u003eLinux\u003c/div\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\nHTML\n\ndocument = Nokogiri::HTML(listing)\n\ntechnologies = EmployMe::Parser::Technologies::Strategies::PatternMatch.perform(document)\n```\n\n### Title\n\nFind the title.\n\n```ruby\nrequire 'nokogiri'\nrequire 'employ_me'\n\nlisting = \u003c\u003c-HTML\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n  \u003chead\u003e\u003c/head\u003e\n  \u003cbody\u003e\n    \u003cdiv\u003eSenior Software Engineer\u003c/div\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\nHTML\n\ndocument = Nokogiri::HTML(listing)\n\ntitle, seniority = EmployMe::Parser::Title::Strategies::PatternMatch.perform(document)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgonzdev%2Femploy_me","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdgonzdev%2Femploy_me","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgonzdev%2Femploy_me/lists"}