├── .fasterer.yml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-request.md ├── dependabot.yml ├── pull_request_template.md ├── stale.yml └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── assets └── images │ └── xcmonkey.png ├── bin ├── console ├── setup └── xcmonkey ├── fastlane └── Fastfile ├── lib ├── xcmonkey.rb └── xcmonkey │ ├── describer.rb │ ├── driver.rb │ ├── logger.rb │ ├── repeater.rb │ └── version.rb ├── requirements.txt ├── sonar-project.properties ├── spec ├── describer_spec.rb ├── driver_spec.rb ├── logger_spec.rb ├── repeater_spec.rb ├── spec_helper.rb └── xcmonkey_spec.rb └── xcmonkey.gemspec /.fasterer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.fasterer.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: testableapple 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/images/xcmonkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/assets/images/xcmonkey.png -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/xcmonkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/bin/xcmonkey -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /lib/xcmonkey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/lib/xcmonkey.rb -------------------------------------------------------------------------------- /lib/xcmonkey/describer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/lib/xcmonkey/describer.rb -------------------------------------------------------------------------------- /lib/xcmonkey/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/lib/xcmonkey/driver.rb -------------------------------------------------------------------------------- /lib/xcmonkey/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/lib/xcmonkey/logger.rb -------------------------------------------------------------------------------- /lib/xcmonkey/repeater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/lib/xcmonkey/repeater.rb -------------------------------------------------------------------------------- /lib/xcmonkey/version.rb: -------------------------------------------------------------------------------- 1 | class Xcmonkey 2 | VERSION = '1.3.1' 3 | end 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fb-idb 2 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /spec/describer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/spec/describer_spec.rb -------------------------------------------------------------------------------- /spec/driver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/spec/driver_spec.rb -------------------------------------------------------------------------------- /spec/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/spec/logger_spec.rb -------------------------------------------------------------------------------- /spec/repeater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/spec/repeater_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/xcmonkey_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/spec/xcmonkey_spec.rb -------------------------------------------------------------------------------- /xcmonkey.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testableapple/xcmonkey/HEAD/xcmonkey.gemspec --------------------------------------------------------------------------------