{"id":15685236,"url":"https://github.com/morgoth/moneybookers","last_synced_at":"2026-02-16T22:08:11.487Z","repository":{"id":56884280,"uuid":"1833390","full_name":"morgoth/moneybookers","owner":"morgoth","description":"Ruby client for Moneybookers","archived":false,"fork":false,"pushed_at":"2011-06-14T11:29:04.000Z","size":101,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-29T13:47:08.018Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/morgoth/moneybookers","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/morgoth.png","metadata":{"files":{"readme":"README.markdown","changelog":null,"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":"2011-06-01T18:41:29.000Z","updated_at":"2016-07-01T00:35:19.000Z","dependencies_parsed_at":"2022-08-20T13:10:53.003Z","dependency_job_id":null,"html_url":"https://github.com/morgoth/moneybookers","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/morgoth/moneybookers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morgoth%2Fmoneybookers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morgoth%2Fmoneybookers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morgoth%2Fmoneybookers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morgoth%2Fmoneybookers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morgoth","download_url":"https://codeload.github.com/morgoth/moneybookers/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morgoth%2Fmoneybookers/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264677583,"owners_count":23648131,"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-10-03T17:24:22.127Z","updated_at":"2026-02-16T22:08:06.456Z","avatar_url":"https://github.com/morgoth.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Moneybookers #\nRuby client for [Moneybookers](http://moneybookers.com/) service.\n\nRefer to Moneybookers documentation:\n\n* [Automated Payment Interface](http://www.moneybookers.com/merchant/pl/automated_payments_interface_manual.pdf)\n* [Payment Gateway](http://www.moneybookers.com/merchant/pl/moneybookers_gateway_manual.pdf)\n\n## Configuration ##\n\n``` ruby\nrequire \"moneybookers\"\n\nMoneybookers.configure do |config|\n  config.merchant_id     = \"merchant_id\"\n  config.email           = \"john@doe.com\"\n  config.secret_word_md5 = \"md5-of-secret-word\"\n  config.password        = \"md5-of-password\"\nend\n```\n\nNOTE: You can create md5 of your credentials by:\n\n``` ruby\nrequire \"digest/md5\"\nDigest::MD5.hexdigest(\"your-secret-word\")\n```\n\n## Payment Gateway ##\n\nYou can prepare payment gateway form by sending params and retrieving session_id (that will be used in rendering form).\n\n``` ruby\nclient = Moneybookers::PaymentGateway::Client.new({})\nclient.prepare\nclient.session_id\n```\nHaving session_id you can render moneybookers form from url:\n\n```\nhttps://www.moneybookers.com/app/payment.pl?sid=prepared-session-id-from-previous-request\n```\n\n## API ##\n\nNOTE: To use Moneybookers API you must add your IP address to allowed, through moneybookers admin panel.\n\n### Pay On Demand ##\n\nWhen user accepted pay on demand option during transaction authorisation, you can charge him by using pay on demand interface.\n\n``` ruby\nclient = Moneybookers::API::PayOnDemand.new(:amount =\u003e 10, :currency =\u003e \"EUR\", :rec_payment_id =\u003e 123)\nclient.prepare\nclient.request\n```\nThis is done in 2 steps.\n\n1. Preparing transaction and retrieving session_id (prepare)\n2. Charging user (request)\n\n## Transaction Confirmation ##\n\nMoneybookers can send confirmation of each transaction (when status_url was specified).\nThose requests will be sent from theirs IP pool, that are available by:\n\n``` ruby\nMoneybookers::SERVICE_IPS\n```\n\nNOTE: you should always check if this IPs are still accurate by contacting Moneybookers support.\n\n## TODO: ##\n* Support rest of API\n* More tests\n* Docs\n\n## Copyright ##\n\nCreated during development for [Ragnarson](http://ragnarson.com/)\n\nCopyright © 2011 Wojciech Wnętrzak. See LICENSE for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorgoth%2Fmoneybookers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorgoth%2Fmoneybookers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorgoth%2Fmoneybookers/lists"}