├── .editorconfig ├── .github └── workflows │ ├── coverage.yaml │ ├── documentation.yaml │ ├── test-external.yaml │ └── test.yaml ├── .gitignore ├── gems.rb ├── lib ├── wtf.rb └── wtf │ ├── is_it_doing.rb │ └── version.rb ├── license.md ├── readme.md ├── release.cert ├── test ├── wtf.rb └── wtf │ └── is_it_doing.rb └── wtf.gemspec /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/.github/workflows/coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/test-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/.github/workflows/test-external.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /pkg/ 3 | /gems.locked 4 | /.covered.db 5 | /external 6 | -------------------------------------------------------------------------------- /gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/gems.rb -------------------------------------------------------------------------------- /lib/wtf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/lib/wtf.rb -------------------------------------------------------------------------------- /lib/wtf/is_it_doing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/lib/wtf/is_it_doing.rb -------------------------------------------------------------------------------- /lib/wtf/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/lib/wtf/version.rb -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/readme.md -------------------------------------------------------------------------------- /release.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/release.cert -------------------------------------------------------------------------------- /test/wtf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/test/wtf.rb -------------------------------------------------------------------------------- /test/wtf/is_it_doing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/test/wtf/is_it_doing.rb -------------------------------------------------------------------------------- /wtf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioquatix/wtf/HEAD/wtf.gemspec --------------------------------------------------------------------------------