{"id":20471577,"url":"https://github.com/backbase/fastlane-plugin-create_remote_config_release_package","last_synced_at":"2026-04-21T13:32:12.457Z","repository":{"id":41326629,"uuid":"509142800","full_name":"Backbase/fastlane-plugin-create_remote_config_release_package","owner":"Backbase","description":"A Fastlane plugin to generate a release package ","archived":false,"fork":false,"pushed_at":"2023-02-15T15:45:48.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-11-20T20:02:50.936Z","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/Backbase.png","metadata":{"files":{"readme":"README.md","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":"2022-06-30T15:52:31.000Z","updated_at":"2022-06-30T16:02:58.000Z","dependencies_parsed_at":"2023-01-18T08:30:43.095Z","dependency_job_id":null,"html_url":"https://github.com/Backbase/fastlane-plugin-create_remote_config_release_package","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Backbase/fastlane-plugin-create_remote_config_release_package","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Ffastlane-plugin-create_remote_config_release_package","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Ffastlane-plugin-create_remote_config_release_package/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Ffastlane-plugin-create_remote_config_release_package/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Ffastlane-plugin-create_remote_config_release_package/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Backbase","download_url":"https://codeload.github.com/Backbase/fastlane-plugin-create_remote_config_release_package/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Backbase%2Ffastlane-plugin-create_remote_config_release_package/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32094391,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-15T14:16:33.157Z","updated_at":"2026-04-21T13:32:12.436Z","avatar_url":"https://github.com/Backbase.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# create_remote_config_release_package plugin\n\n[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-create_remote_config_release_package)\n\n## Getting Started\n\nThis project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-create_remote_config_release_package`, add it to your project by running:\n\n```bash\nfastlane add_plugin create_remote_config_release_package\n```\n\n## About create_remote_config_release_package\n\nCreates a Remote Config release package\n\n## Example\n\nCheck out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin.\nAdd the gem in the Gemfile \n```ruby \ngem \"fastlane-plugin-create_remote_config_release_package\", git: \"https://github.com/Backbase/fastlane-plugin-create_remote_config_release_package.git\"\n```\n\n\n```ruby\nplatform :ios do\n  lane :test do\n    projectName = \"sample-app\"\n    appTitle = \"Sample Application\"\n    bundleId = \"com.sample.app1\"\n    projectFile = \"../path/to/project.xcodeproj\"\n    campaignJSON = \"../path/to/campaign.json\"\n    parametersJSON = \"../path/to/parameters.json\"\n    targetName = \"Target\"\n\n    create_remote_config_release_package(\n      project_name: projectName,\n      app_title: appTitle,\n      bundle_id: bundleId,\n      project_file_path: projectFile,\n      campaign_json_path: campaignJSON,\n      parameters_json_path: parametersJSON,\n      target_name: targetName\n    )\n  end\nend\n\n```\n**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)\n\n## Run tests for this plugin\n\nTo run both the tests, and code style validation, run\n\n```\nrake\n```\n\nTo automatically fix many of the styling issues, use\n```\nrubocop -a\n```\n\n## Issues and Feedback\n\nFor any other issues and feedback about this plugin, please submit it to this repository.\n\n## Troubleshooting\n\nIf you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.\n\n## Using _fastlane_ Plugins\n\nFor more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).\n\n## About _fastlane_\n\n_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackbase%2Ffastlane-plugin-create_remote_config_release_package","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbackbase%2Ffastlane-plugin-create_remote_config_release_package","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackbase%2Ffastlane-plugin-create_remote_config_release_package/lists"}