├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── cocoapods-static-swift-framework.gemspec ├── lib ├── cocoapods-static-swift-framework.rb ├── cocoapods-static-swift-framework │ ├── gem_version.rb │ ├── main.rb │ └── patch │ │ └── static_pod.rb └── cocoapods_plugin.rb └── spec ├── command └── framework_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-static-swift-framework.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/cocoapods-static-swift-framework.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-static-swift-framework.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-static-swift-framework/gem_version' 2 | -------------------------------------------------------------------------------- /lib/cocoapods-static-swift-framework/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsStaticSwiftFramework 2 | VERSION = "0.5" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods-static-swift-framework/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/lib/cocoapods-static-swift-framework/main.rb -------------------------------------------------------------------------------- /lib/cocoapods-static-swift-framework/patch/static_pod.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/lib/cocoapods-static-swift-framework/patch/static_pod.rb -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-static-swift-framework/main' 2 | -------------------------------------------------------------------------------- /spec/command/framework_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/spec/command/framework_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leavez/cocoapods-static-swift-framework/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------