├── .coveralls.yml ├── .gitignore ├── .rubocop-cocoapods.yml ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── cocoapods-packager.gemspec ├── lib ├── cocoapods-packager │ ├── builder.rb │ ├── framework.rb │ ├── mangle.rb │ ├── pod_utils.rb │ ├── spec_builder.rb │ ├── symbols.rb │ └── user_interface │ │ └── build_failed_report.rb ├── cocoapods_packager.rb ├── cocoapods_plugin.rb └── pod │ └── command │ └── package.rb ├── scripts ├── lstconst.sh └── lstsym.sh └── spec ├── command ├── error_spec.rb ├── package_spec.rb └── subspecs_spec.rb ├── fixtures ├── Archs.podspec ├── Builder.podspec ├── CPDColors.podspec ├── FH.podspec ├── KFData.podspec ├── LibraryConsumerDemo │ ├── .gitignore │ ├── LibraryConsumer.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LibraryConsumer.xcscheme │ ├── LibraryConsumer.xcworkspace │ │ └── contents.xcworkspacedata │ ├── LibraryConsumer │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── main.m │ └── Podfile ├── LibraryDemo.podspec ├── LocalSources │ ├── LICENSE │ ├── LocalNikeKit.h │ ├── LocalNikeKit.m │ └── LocalNikeKit.podspec ├── NikeKit.podspec ├── OpenSans.podspec ├── PackagerTest │ ├── .gitignore │ ├── PackagerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PackagerTest.xcscheme │ ├── PackagerTest.xcworkspace │ │ └── contents.xcworkspacedata │ ├── PackagerTest │ │ ├── CPDAppDelegate.h │ │ ├── CPDAppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── PackagerTest-Info.plist │ │ ├── PackagerTest-Prefix.pch │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── PackagerTestTests │ │ ├── PackagerTestTests-Info.plist │ │ ├── PackagerTestTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── Podfile │ └── Podfile.lock ├── Weakly.podspec ├── a.podspec ├── foo-bar.podspec └── layer-client-messaging-schema.podspec ├── integration └── project_spec.rb ├── spec_helper.rb └── unit ├── pod └── utils_spec.rb ├── specification ├── builder_spec.rb └── spec_builder_spec.rb └── user_interface └── build_failed_report_spec.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | pkg 3 | .DS_Store 4 | .bundle/ 5 | -------------------------------------------------------------------------------- /.rubocop-cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/.rubocop-cocoapods.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-packager.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/cocoapods-packager.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-packager/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods-packager/builder.rb -------------------------------------------------------------------------------- /lib/cocoapods-packager/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods-packager/framework.rb -------------------------------------------------------------------------------- /lib/cocoapods-packager/mangle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods-packager/mangle.rb -------------------------------------------------------------------------------- /lib/cocoapods-packager/pod_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods-packager/pod_utils.rb -------------------------------------------------------------------------------- /lib/cocoapods-packager/spec_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods-packager/spec_builder.rb -------------------------------------------------------------------------------- /lib/cocoapods-packager/symbols.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods-packager/symbols.rb -------------------------------------------------------------------------------- /lib/cocoapods-packager/user_interface/build_failed_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods-packager/user_interface/build_failed_report.rb -------------------------------------------------------------------------------- /lib/cocoapods_packager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods_packager.rb -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /lib/pod/command/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/lib/pod/command/package.rb -------------------------------------------------------------------------------- /scripts/lstconst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/scripts/lstconst.sh -------------------------------------------------------------------------------- /scripts/lstsym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/scripts/lstsym.sh -------------------------------------------------------------------------------- /spec/command/error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/command/error_spec.rb -------------------------------------------------------------------------------- /spec/command/package_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/command/package_spec.rb -------------------------------------------------------------------------------- /spec/command/subspecs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/command/subspecs_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/Archs.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/Archs.podspec -------------------------------------------------------------------------------- /spec/fixtures/Builder.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/Builder.podspec -------------------------------------------------------------------------------- /spec/fixtures/CPDColors.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/CPDColors.podspec -------------------------------------------------------------------------------- /spec/fixtures/FH.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/FH.podspec -------------------------------------------------------------------------------- /spec/fixtures/KFData.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/KFData.podspec -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/.gitignore -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m -------------------------------------------------------------------------------- /spec/fixtures/LibraryConsumerDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryConsumerDemo/Podfile -------------------------------------------------------------------------------- /spec/fixtures/LibraryDemo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LibraryDemo.podspec -------------------------------------------------------------------------------- /spec/fixtures/LocalSources/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/LocalSources/LocalNikeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LocalSources/LocalNikeKit.h -------------------------------------------------------------------------------- /spec/fixtures/LocalSources/LocalNikeKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LocalSources/LocalNikeKit.m -------------------------------------------------------------------------------- /spec/fixtures/LocalSources/LocalNikeKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/LocalSources/LocalNikeKit.podspec -------------------------------------------------------------------------------- /spec/fixtures/NikeKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/NikeKit.podspec -------------------------------------------------------------------------------- /spec/fixtures/OpenSans.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/OpenSans.podspec -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/.gitignore -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTest/main.m -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/PackagerTestTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/Podfile -------------------------------------------------------------------------------- /spec/fixtures/PackagerTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/PackagerTest/Podfile.lock -------------------------------------------------------------------------------- /spec/fixtures/Weakly.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/Weakly.podspec -------------------------------------------------------------------------------- /spec/fixtures/a.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/a.podspec -------------------------------------------------------------------------------- /spec/fixtures/foo-bar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/foo-bar.podspec -------------------------------------------------------------------------------- /spec/fixtures/layer-client-messaging-schema.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/fixtures/layer-client-messaging-schema.podspec -------------------------------------------------------------------------------- /spec/integration/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/integration/project_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/pod/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/unit/pod/utils_spec.rb -------------------------------------------------------------------------------- /spec/unit/specification/builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/unit/specification/builder_spec.rb -------------------------------------------------------------------------------- /spec/unit/specification/spec_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/unit/specification/spec_builder_spec.rb -------------------------------------------------------------------------------- /spec/unit/user_interface/build_failed_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/cocoapods-packager/HEAD/spec/unit/user_interface/build_failed_report_spec.rb --------------------------------------------------------------------------------