{"id":23765818,"url":"https://github.com/solidusio-contrib/solidus_drip","last_synced_at":"2025-09-05T09:33:07.988Z","repository":{"id":39753079,"uuid":"218642323","full_name":"solidusio-contrib/solidus_drip","owner":"solidusio-contrib","description":"Drip integration for Solidus","archived":false,"fork":false,"pushed_at":"2022-08-09T18:05:27.000Z","size":74,"stargazers_count":2,"open_issues_count":1,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-06T03:12:43.436Z","etag":null,"topics":["drip","solidus-extensions"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/solidusio-contrib.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-10-30T23:04:02.000Z","updated_at":"2022-05-26T08:25:00.000Z","dependencies_parsed_at":"2022-09-03T15:20:30.635Z","dependency_job_id":null,"html_url":"https://github.com/solidusio-contrib/solidus_drip","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/solidusio-contrib/solidus_drip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solidusio-contrib%2Fsolidus_drip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solidusio-contrib%2Fsolidus_drip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solidusio-contrib%2Fsolidus_drip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solidusio-contrib%2Fsolidus_drip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solidusio-contrib","download_url":"https://codeload.github.com/solidusio-contrib/solidus_drip/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solidusio-contrib%2Fsolidus_drip/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273739169,"owners_count":25159289,"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","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"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":["drip","solidus-extensions"],"created_at":"2024-12-31T23:18:05.869Z","updated_at":"2025-09-05T09:33:04.790Z","avatar_url":"https://github.com/solidusio-contrib.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Solidus Drip\n\n[![CircleCI](https://circleci.com/gh/solidusio-contrib/solidus_drip.svg?style=shield)](https://circleci.com/gh/solidusio-contrib/solidus_drip)\n[![codecov](https://codecov.io/gh/solidusio-contrib/solidus_drip/branch/master/graph/badge.svg)](https://codecov.io/gh/solidusio-contrib/solidus_drip)\n\n\u003c!-- Explain what your extension does. --\u003e\n\n## Installation\n\nAdd solidus_drip to your Gemfile:\n\n```ruby\ngem 'solidus_drip'\n```\n\nBundle your dependencies and run the installation generator:\n\n```shell\nbin/rails generate solidus_drip:install\n```\n\n## Usage\n\nAdd your Drip credentials as environment variables. Get your Drip API key [here](https://www.getdrip.com/user/edit).\n\n```ruby\nENV['DRIP_API_KEY'] = 'YOUR_API_KEY'\nENV['DRIP_ACCOUNT_ID'] = 'YOUR_ACCOUNT_ID'\n```\n\n### Import Data\n\nYou can import all order data from your Solidus store to Drip via a rake task.\nThis should ideally only be run once.\n\n```shell\nrails drip:import_orders\n```\n\nFor any additional info, please refer to the [Drip API Documentation](https://developer.drip.com/).\n\n## Development\n\n### Testing the extension\n\nFirst bundle your dependencies, then run `bin/rake`. `bin/rake` will default to building the dummy\napp if it does not exist, then it will run specs. The dummy app can be regenerated by using\n`bin/rake extension:test_app`.\n\n```shell\nbin/rake\n```\n\nTo run [Rubocop](https://github.com/bbatsov/rubocop) static code analysis run\n\n```shell\nbundle exec rubocop\n```\n\nWhen testing your application's integration with this extension you may use its factories.\nSimply add this require statement to your spec_helper:\n\n```ruby\nrequire 'solidus_drip/testing_support/factories'\n```\n\n### Running the sandbox\n\nTo run this extension in a sandboxed Solidus application, you can run `bin/sandbox`. The path for\nthe sandbox app is `./sandbox` and `bin/rails` will forward any Rails commands to\n`sandbox/bin/rails`.\n\nHere's an example:\n\n```\n$ bin/rails server\n=\u003e Booting Puma\n=\u003e Rails 6.0.2.1 application starting in development\n* Listening on tcp://127.0.0.1:3000\nUse Ctrl-C to stop\n```\n\n### Updating the changelog\n\nBefore and after releases the changelog should be updated to reflect the up-to-date status of\nthe project:\n\n```shell\nbin/rake changelog\ngit add CHANGELOG.md\ngit commit -m \"Update the changelog\"\n```\n\n### Releasing new versions\n\nPlease refer to the dedicated [page](https://github.com/solidusio/solidus/wiki/How-to-release-extensions) on Solidus wiki.\n\n## License\n\nCopyright (c) 2019-2021 Eric Saupe, released under the New BSD License\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolidusio-contrib%2Fsolidus_drip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolidusio-contrib%2Fsolidus_drip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolidusio-contrib%2Fsolidus_drip/lists"}