{"id":21519343,"url":"https://github.com/alexwayfer/faraday-parse_dates","last_synced_at":"2025-04-09T22:09:15.525Z","repository":{"id":39657527,"uuid":"468517088","full_name":"AlexWayfer/faraday-parse_dates","owner":"AlexWayfer","description":"Parse dates from Faraday response body","archived":false,"fork":false,"pushed_at":"2025-04-09T21:46:27.000Z","size":117,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-09T22:09:08.532Z","etag":null,"topics":[],"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/AlexWayfer.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2022-03-10T21:33:04.000Z","updated_at":"2022-03-10T21:39:28.000Z","dependencies_parsed_at":"2024-01-15T13:26:31.567Z","dependency_job_id":"f42f1be0-da56-4380-8a20-31cbd23df541","html_url":"https://github.com/AlexWayfer/faraday-parse_dates","commit_stats":{"total_commits":41,"total_committers":2,"mean_commits":20.5,"dds":"0.46341463414634143","last_synced_commit":"ef6cf63e24705df5d66a297ffef8827b8abcc03d"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexWayfer%2Ffaraday-parse_dates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexWayfer%2Ffaraday-parse_dates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexWayfer%2Ffaraday-parse_dates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexWayfer%2Ffaraday-parse_dates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexWayfer","download_url":"https://codeload.github.com/AlexWayfer/faraday-parse_dates/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248119294,"owners_count":21050755,"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":[],"created_at":"2024-11-24T00:57:29.824Z","updated_at":"2025-04-09T22:09:15.503Z","avatar_url":"https://github.com/AlexWayfer.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Faraday Parse Dates\n\n[![Cirrus CI - Base Branch Build Status](https://img.shields.io/cirrus/github/AlexWayfer/faraday-parse_dates?style=flat-square)](https://cirrus-ci.com/github/AlexWayfer/faraday-parse_dates)\n[![Codecov branch](https://img.shields.io/codecov/c/github/AlexWayfer/faraday-parse_dates/main.svg?style=flat-square)](https://codecov.io/gh/AlexWayfer/faraday-parse_dates)\n[![Code Climate](https://img.shields.io/codeclimate/maintainability/AlexWayfer/faraday-parse_dates.svg?style=flat-square)](https://codeclimate.com/github/AlexWayfer/faraday-parse_dates)\n[![Depfu](https://img.shields.io/depfu/AlexWayfer/faraday-parse_dates?style=flat-square)](https://depfu.com/repos/github/AlexWayfer/faraday-parse_dates)\n[![Inline docs](https://inch-ci.org/github/AlexWayfer/faraday-parse_dates.svg?branch=main)](https://inch-ci.org/github/AlexWayfer/faraday-parse_dates)\n[![Gem](https://img.shields.io/gem/v/faraday-parse_dates.svg?style=flat-square)](https://rubygems.org/gems/faraday-parse_dates)\n[![License](https://img.shields.io/github/license/AlexWayfer/faraday-parse_dates.svg?style=flat-square)](LICENSE.md)\n\nParse dates from response.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'faraday-parse_dates'\n```\n\nAnd then execute:\n\n```shell\nbundle install\n```\n\nOr install it yourself as:\n\n```shell\ngem install faraday-parse_dates\n```\n\n## Usage\n\n```ruby\nrequire 'faraday/parse_dates'\n\nconnection = Faraday.new do |faraday|\n  ## This gem only decodes responses\n  faraday.response :parse_dates\n\n  ## Alternatively, you can use `use`\n  # faraday.use :parse_dates\nend\n```\n\n### Order note\n\nIt can doesn't work being placed after `faraday.response :json` or similar middlewares,\nbut can work before them. Check the order and results.\n\nThe issue about this: \u003chttps://github.com/lostisland/faraday/issues/1458\u003e\n\nAnd please read middlewares documentation carefully: \u003chttps://lostisland.github.io/faraday/middleware/\u003e\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies.\n\nThen, run `bin/test` to run the tests.\n\nTo install this gem onto your local machine, run `toys gem install`.\n\nTo release a new version, run `toys gem release %version%`.\nSee how it works [here](https://github.com/AlexWayfer/gem_toys#release).\n\n## Contributing\n\nBug reports and pull requests are welcome on [GitHub](https://github.com/AlexWayfer/faraday-parse_dates).\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexwayfer%2Ffaraday-parse_dates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexwayfer%2Ffaraday-parse_dates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexwayfer%2Ffaraday-parse_dates/lists"}