├── .fasterer.yml ├── .github ├── pull_request_template.md └── workflows │ └── Test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── fastlane-plugin-create_xcframework.gemspec ├── lib └── fastlane │ └── plugin │ ├── create_xcframework.rb │ └── create_xcframework │ ├── actions │ └── create_xcframework_action.rb │ ├── helper │ └── create_xcframework_helper.rb │ └── version.rb └── spec ├── fastlane_create_xcframework_action_spec.rb ├── fastlane_create_xcframework_helper_spec.rb └── spec_helper.rb /.fasterer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/.fasterer.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/.github/workflows/Test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/Rakefile -------------------------------------------------------------------------------- /fastlane-plugin-create_xcframework.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/fastlane-plugin-create_xcframework.gemspec -------------------------------------------------------------------------------- /lib/fastlane/plugin/create_xcframework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/lib/fastlane/plugin/create_xcframework.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/create_xcframework/actions/create_xcframework_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/lib/fastlane/plugin/create_xcframework/actions/create_xcframework_action.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/create_xcframework/helper/create_xcframework_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/lib/fastlane/plugin/create_xcframework/helper/create_xcframework_helper.rb -------------------------------------------------------------------------------- /lib/fastlane/plugin/create_xcframework/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/lib/fastlane/plugin/create_xcframework/version.rb -------------------------------------------------------------------------------- /spec/fastlane_create_xcframework_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/spec/fastlane_create_xcframework_action_spec.rb -------------------------------------------------------------------------------- /spec/fastlane_create_xcframework_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/spec/fastlane_create_xcframework_helper_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bielikb/fastlane-plugin-create_xcframework/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------