├── .gitignore ├── .travis.yml ├── Makefile ├── Package.swift ├── README.md ├── Sources ├── Simulators │ ├── Supports │ │ └── Arguments.swift │ └── main.swift └── SimulatorsCore │ ├── Command.swift │ ├── Extensions │ └── String+Regexp.swift │ ├── Simulators.swift │ └── Xcodebuild.swift ├── Tests └── SimulatorsCoreTests │ ├── SimulatorsTest.swift │ └── XcodebuildTest.swift └── simulators.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Simulators/Supports/Arguments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Sources/Simulators/Supports/Arguments.swift -------------------------------------------------------------------------------- /Sources/Simulators/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Sources/Simulators/main.swift -------------------------------------------------------------------------------- /Sources/SimulatorsCore/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Sources/SimulatorsCore/Command.swift -------------------------------------------------------------------------------- /Sources/SimulatorsCore/Extensions/String+Regexp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Sources/SimulatorsCore/Extensions/String+Regexp.swift -------------------------------------------------------------------------------- /Sources/SimulatorsCore/Simulators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Sources/SimulatorsCore/Simulators.swift -------------------------------------------------------------------------------- /Sources/SimulatorsCore/Xcodebuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Sources/SimulatorsCore/Xcodebuild.swift -------------------------------------------------------------------------------- /Tests/SimulatorsCoreTests/SimulatorsTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Tests/SimulatorsCoreTests/SimulatorsTest.swift -------------------------------------------------------------------------------- /Tests/SimulatorsCoreTests/XcodebuildTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/Tests/SimulatorsCoreTests/XcodebuildTest.swift -------------------------------------------------------------------------------- /simulators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/Simulators/HEAD/simulators.png --------------------------------------------------------------------------------