{"id":24730178,"url":"https://github.com/dartbuild/cocoapods-embed-flutter","last_synced_at":"2025-10-09T23:30:38.152Z","repository":{"id":38848939,"uuid":"466764481","full_name":"DartBuild/cocoapods-embed-flutter","owner":"DartBuild","description":"Cocoapods plugin to allow declaring flutter module as dependency","archived":false,"fork":false,"pushed_at":"2023-09-01T07:52:40.000Z","size":129,"stargazers_count":17,"open_issues_count":7,"forks_count":8,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-27T15:52:18.710Z","etag":null,"topics":["cocoapods","cocoapods-plugin","flutter","flutter-cocoapods","flutter-embedder","flutter-integrate","flutter-ios","flutter-module-native","ios","ios-flutter","plugin"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/cocoapods-embed-flutter","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/DartBuild.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":["soumyamahunt"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2022-03-06T14:40:40.000Z","updated_at":"2024-10-10T06:03:35.000Z","dependencies_parsed_at":"2024-11-21T03:34:06.938Z","dependency_job_id":null,"html_url":"https://github.com/DartBuild/cocoapods-embed-flutter","commit_stats":{"total_commits":92,"total_committers":3,"mean_commits":"30.666666666666668","dds":0.3913043478260869,"last_synced_commit":"92eb585385f6f13a5e2bf8c4fddff4d106b5568f"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DartBuild%2Fcocoapods-embed-flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DartBuild%2Fcocoapods-embed-flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DartBuild%2Fcocoapods-embed-flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DartBuild%2Fcocoapods-embed-flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DartBuild","download_url":"https://codeload.github.com/DartBuild/cocoapods-embed-flutter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235879919,"owners_count":19059722,"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":["cocoapods","cocoapods-plugin","flutter","flutter-cocoapods","flutter-embedder","flutter-integrate","flutter-ios","flutter-module-native","ios","ios-flutter","plugin"],"created_at":"2025-01-27T15:52:36.542Z","updated_at":"2025-10-09T23:30:37.793Z","avatar_url":"https://github.com/DartBuild.png","language":"Ruby","funding_links":["https://github.com/sponsors/soumyamahunt"],"categories":[],"sub_categories":[],"readme":"# CocoaPods Embed Flutter\n\n[![CI/CD](https://github.com/DartBuild/cocoapods-embed-flutter/actions/workflows/main.yml/badge.svg?branch=main\u0026event=push)](https://github.com/DartBuild/cocoapods-embed-flutter/actions/workflows/main.yml)\n[![Gem Version](https://badge.fury.io/rb/cocoapods-embed-flutter.svg)](http://badge.fury.io/rb/cocoapods-embed-flutter)\n[![Maintainability](https://api.codeclimate.com/v1/badges/3cb2cbd6e1c2b600e1f5/maintainability)](https://codeclimate.com/github/DartBuild/cocoapods-embed-flutter/maintainability)\n[![CodeQL](https://github.com/DartBuild/cocoapods-embed-flutter/actions/workflows/codeql-analysis.yml/badge.svg?branch=main\u0026event=schedule)](https://github.com/DartBuild/cocoapods-embed-flutter/actions/workflows/codeql-analysis.yml)\n\nStraight forward way of declaring flutter modules as dependency for targets, just like cocoapods does with pods.\n\n## Installation\n\n### Install using command line.\n```bash\n$ [sudo] gem install cocoapods-embed-flutter\n```\n\n### Or add this to your `Gemfile`.\n```rb\ngem 'cocoapods-embed-flutter'\n```\n## Usage\n\nIn your host project `Podfile`, write the below line before any target definition\n```rb\nplugin 'cocoapods-embed-flutter'\n```\n\n### Embedding module from a local path.\n\n```rb\npub 'flutter_module', :path =\u003e '../'\n```\n\n\u003ca name=\"path_desc\"\u003e\u003c/a\u003e\n*`:path` can be path pointing to `pubspec.yaml` or to the directory containing `pubspec.yaml` or to the directory containg flutter module.*\n\n### Embedding module from a repository.\n\n```rb\npub 'flutter_module', :git =\u003e 'https://github.com/gowalla/flutter_module.git', :branch =\u003e 'dev'\npub 'flutter_module', :git =\u003e 'https://github.com/gowalla/flutter_module.git', :tag =\u003e '0.7.0'\npub 'flutter_module', :git =\u003e 'https://github.com/gowalla/flutter_module.git', :commit =\u003e '082f8319af'\n```\n\n*flutter module project should be at the root of repository, if that's not the case add additional `:path` attribute for relative path to flutter project in repository. `:path` follows [these](#path_desc) restictions.*\n\n```rb\npub 'flutter_module', :git =\u003e 'https://github.com/gowalla/flutter_module.git', :tag =\u003e '0.7.0', :path =\u003e 'relative path/to/project'\n```\n\n## Limitations\n\n- Modules hosted in [pub.dev](https://pub.dev/) are not supported, only local modules and modules in remote sources like git are supported.\n- You won't be able to add more than one flutter module to a single target. Currently flutter only supports one module per target.\n- No caching is done for external sources, every time you run `pod install` flutter module will be downloaded each time.\n\n## Links\n\n| Link | Description |\n| :----- | :------ |\n[Gem page](https://rubygems.org/gems/cocoapods-embed-flutter) | Official Ruby Gems page.\n[Code docs](https://www.rubydoc.info/gems/cocoapods-embed-flutter) | Generated code documentation.\n[Changelog](https://github.com/DartBuild/cocoapods-embed-flutter/blob/main/CHANGELOG.md) | See the changes introduced in each version.\n[Code of Conduct](CODE_OF_CONDUCT.md) | Find out the standards we hold ourselves to.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdartbuild%2Fcocoapods-embed-flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdartbuild%2Fcocoapods-embed-flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdartbuild%2Fcocoapods-embed-flutter/lists"}