├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── fourflusher.gemspec ├── lib ├── fourflusher.rb └── fourflusher │ ├── compat.rb │ ├── executable.rb │ ├── find.rb │ ├── simctl.rb │ ├── version.rb │ └── xcodebuild.rb └── spec ├── find_spec.rb ├── fixtures ├── simctl.json ├── simctl_bad.json ├── simctl_small.json ├── simctl_with_unavailable.json ├── simctl_xcode_10.1.json ├── simctl_xcode_10.2.json └── simctl_xcode_11.0.json ├── fixtures_spec.rb ├── sort_spec.rb └── unit_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/bin/setup -------------------------------------------------------------------------------- /fourflusher.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/fourflusher.gemspec -------------------------------------------------------------------------------- /lib/fourflusher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/lib/fourflusher.rb -------------------------------------------------------------------------------- /lib/fourflusher/compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/lib/fourflusher/compat.rb -------------------------------------------------------------------------------- /lib/fourflusher/executable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/lib/fourflusher/executable.rb -------------------------------------------------------------------------------- /lib/fourflusher/find.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/lib/fourflusher/find.rb -------------------------------------------------------------------------------- /lib/fourflusher/simctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/lib/fourflusher/simctl.rb -------------------------------------------------------------------------------- /lib/fourflusher/version.rb: -------------------------------------------------------------------------------- 1 | module Fourflusher 2 | VERSION = '2.3.1' 3 | end 4 | -------------------------------------------------------------------------------- /lib/fourflusher/xcodebuild.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/lib/fourflusher/xcodebuild.rb -------------------------------------------------------------------------------- /spec/find_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/find_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/simctl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures/simctl.json -------------------------------------------------------------------------------- /spec/fixtures/simctl_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures/simctl_bad.json -------------------------------------------------------------------------------- /spec/fixtures/simctl_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures/simctl_small.json -------------------------------------------------------------------------------- /spec/fixtures/simctl_with_unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures/simctl_with_unavailable.json -------------------------------------------------------------------------------- /spec/fixtures/simctl_xcode_10.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures/simctl_xcode_10.1.json -------------------------------------------------------------------------------- /spec/fixtures/simctl_xcode_10.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures/simctl_xcode_10.2.json -------------------------------------------------------------------------------- /spec/fixtures/simctl_xcode_11.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures/simctl_xcode_11.0.json -------------------------------------------------------------------------------- /spec/fixtures_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/fixtures_spec.rb -------------------------------------------------------------------------------- /spec/sort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/sort_spec.rb -------------------------------------------------------------------------------- /spec/unit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CocoaPods/fourflusher/HEAD/spec/unit_spec.rb --------------------------------------------------------------------------------