├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── cocoapods-static-frameworks.gemspec ├── lib ├── cocoapods-static-frameworks.rb ├── cocoapods-static-frameworks │ ├── command.rb │ ├── command │ │ ├── frameworks.rb │ │ └── patch │ │ │ ├── aggregate_target.rb │ │ │ ├── pod_xcconfig.rb │ │ │ └── xcconfig_helper.rb │ └── gem_version.rb └── cocoapods_plugin.rb └── spec ├── command └── frameworks_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-static-frameworks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/cocoapods-static-frameworks.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-static-frameworks.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-static-frameworks/gem_version' 2 | -------------------------------------------------------------------------------- /lib/cocoapods-static-frameworks/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/lib/cocoapods-static-frameworks/command.rb -------------------------------------------------------------------------------- /lib/cocoapods-static-frameworks/command/frameworks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/lib/cocoapods-static-frameworks/command/frameworks.rb -------------------------------------------------------------------------------- /lib/cocoapods-static-frameworks/command/patch/aggregate_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/lib/cocoapods-static-frameworks/command/patch/aggregate_target.rb -------------------------------------------------------------------------------- /lib/cocoapods-static-frameworks/command/patch/pod_xcconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/lib/cocoapods-static-frameworks/command/patch/pod_xcconfig.rb -------------------------------------------------------------------------------- /lib/cocoapods-static-frameworks/command/patch/xcconfig_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/lib/cocoapods-static-frameworks/command/patch/xcconfig_helper.rb -------------------------------------------------------------------------------- /lib/cocoapods-static-frameworks/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsStaticFrameworks 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-static-frameworks/command' 2 | -------------------------------------------------------------------------------- /spec/command/frameworks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/spec/command/frameworks_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b-ray/cocoapods-static-frameworks/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------