├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── VISION.md ├── cocoapods-xcautotest.gemspec ├── lib ├── cocoapods-xcautotest.rb ├── cocoapods-xcautotest │ ├── command.rb │ ├── command │ │ └── xcautotest.rb │ ├── gem_version.rb │ ├── installer │ │ └── installer.rb │ └── pod │ │ ├── XCASocketCommunicator.h │ │ ├── XCASocketCommunicator.m │ │ ├── XCAutoTest.h │ │ ├── XCAutoTest.m │ │ ├── XCAutoTest.podspec.json │ │ ├── fishhook │ │ ├── LICENSE │ │ ├── fishhook.c │ │ └── fishhook.h │ │ └── xcautotest_server.js └── cocoapods_plugin.rb └── spec ├── command └── xcautotest_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/Rakefile -------------------------------------------------------------------------------- /VISION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/VISION.md -------------------------------------------------------------------------------- /cocoapods-xcautotest.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/cocoapods-xcautotest.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest.rb: -------------------------------------------------------------------------------- 1 | require 'cocoapods-xcautotest/gem_version' 2 | -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/command.rb -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/command/xcautotest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/command/xcautotest.rb -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/gem_version.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsXcautotest 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/installer/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/installer/installer.rb -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/XCASocketCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/XCASocketCommunicator.h -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/XCASocketCommunicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/XCASocketCommunicator.m -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/XCAutoTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/XCAutoTest.h -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/XCAutoTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/XCAutoTest.m -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/XCAutoTest.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/XCAutoTest.podspec.json -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/fishhook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/fishhook/LICENSE -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/fishhook/fishhook.c -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/fishhook/fishhook.h -------------------------------------------------------------------------------- /lib/cocoapods-xcautotest/pod/xcautotest_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods-xcautotest/pod/xcautotest_server.js -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /spec/command/xcautotest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/spec/command/xcautotest_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/cocoapods-xcautotest/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------