{"id":13994303,"url":"https://github.com/linnify/fastlane-plugin-kobiton","last_synced_at":"2026-01-28T23:09:42.292Z","repository":{"id":37897804,"uuid":"280200280","full_name":"linnify/fastlane-plugin-kobiton","owner":"linnify","description":"A Fastlane plugin useful for automatically uploading builds to Kobiton.","archived":false,"fork":false,"pushed_at":"2022-06-17T15:54:32.000Z","size":24,"stargazers_count":3,"open_issues_count":2,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-29T16:39:14.725Z","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/linnify.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":"2020-07-16T16:14:34.000Z","updated_at":"2022-02-09T17:44:15.000Z","dependencies_parsed_at":"2022-08-19T23:40:51.596Z","dependency_job_id":null,"html_url":"https://github.com/linnify/fastlane-plugin-kobiton","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/linnify/fastlane-plugin-kobiton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linnify%2Ffastlane-plugin-kobiton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linnify%2Ffastlane-plugin-kobiton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linnify%2Ffastlane-plugin-kobiton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linnify%2Ffastlane-plugin-kobiton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linnify","download_url":"https://codeload.github.com/linnify/fastlane-plugin-kobiton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linnify%2Ffastlane-plugin-kobiton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28854546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"ssl_error","status_checked_at":"2026-01-28T22:56:00.861Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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-08-09T14:02:48.795Z","updated_at":"2026-01-28T23:09:42.271Z","avatar_url":"https://github.com/linnify.png","language":"Ruby","funding_links":[],"categories":["Ruby"],"sub_categories":[],"readme":"# kobiton plugin\n\n[![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-kobiton)\n\n## Getting Started\n\nThis project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-kobiton`, add it to your project by running:\n\nAdd the following line to your Pluginfile:\n\n```ruby\ngem \"fastlane-plugin-kobiton\", git: \"https://github.com/linnify/fastlane-plugin-kobiton.git\"\n```\n\nThen run the following commands:\n\n```bash\nbundle install\nbundle exec fastlane install_plugins\n```\n\nThen you will need to use `bundle exec` afterwards because this repo is cached by the bundler:\n\n```bash\nbundle exec fastlane action kobiton\n```\n\nfor printing the documentation of this action\n\n```bash\nbundle exec fastlane dev\n```\n\nfor running the `dev` lane which might contain the `kobiton` action.\n\n## About kobiton\n\nUpload build to Kobiton\n\nThis is a lightweight Fastlane plugin which uploads a given build to Kobiton platform. This action won't trigger any tests on Kobiton. For an automated triggering of tests on Kobiton, please integrate using Jenkins.\n\nThis action does not have any output parameters yet, we are planning to define some in a future version.\n\n## Example\n\nBasic usage:\n\n```ruby\nplatform :ios do\n  desc \"A simple example of an iOS dev lane\"\n  lane :dev do\n    increment_build_number\n    gym(\n      workspace: \"MyAwesomeApp.xcworkspace\",\n      clean: true,\n    )\n    kobiton(\n      api_key: \"01234567-89AB-CDEF-0123-456789AB\",\n      username: \"johndoe\",\n      file: lane_context[SharedValues::IPA_OUTPUT_PATH],\n      app_id: 38007\n    )\n  end\nend\n```\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%2Flinnify%2Ffastlane-plugin-kobiton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinnify%2Ffastlane-plugin-kobiton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinnify%2Ffastlane-plugin-kobiton/lists"}