├── .chamber.pub.pem ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.md │ └── feature_request.md ├── contributing.md ├── labels.yml ├── pull_request_template.md └── workflows │ ├── labels.yml │ ├── linting.yml │ ├── locking.yml │ └── testing.yml ├── .gitignore ├── .markdownlintignore ├── .overcommit.yml ├── .remarkrc ├── .rspec ├── .rubocop.yml ├── .rubocop_core.yml ├── .rubocop_local.yml ├── .rubocop_performance.yml ├── .rubocop_rspec.yml ├── .ruby-version ├── .yamllint ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── bin └── setup ├── certs └── thekompanee.pem ├── checksum ├── fuubar-2.1.0.beta1.gem.md5 ├── fuubar-2.1.0.beta1.gem.sha512 ├── fuubar-2.1.0.beta2.gem.md5 ├── fuubar-2.1.0.beta2.gem.sha512 ├── fuubar-2.1.0.gem.md5 ├── fuubar-2.1.0.gem.sha256 ├── fuubar-2.1.0.gem.sha512 ├── fuubar-2.1.1.gem.md5 ├── fuubar-2.1.1.gem.sha256 ├── fuubar-2.1.1.gem.sha512 ├── fuubar-2.2.0.gem.md5 ├── fuubar-2.2.0.gem.sha256 ├── fuubar-2.2.0.gem.sha512 ├── fuubar-2.3.0.beta1.gem.md5 ├── fuubar-2.3.0.beta1.gem.sha256 ├── fuubar-2.3.0.beta1.gem.sha512 ├── fuubar-2.3.0.beta2.gem.md5 ├── fuubar-2.3.0.beta2.gem.sha256 ├── fuubar-2.3.0.beta2.gem.sha512 ├── fuubar-2.3.0.beta3.gem.md5 ├── fuubar-2.3.0.beta3.gem.sha256 ├── fuubar-2.3.0.beta3.gem.sha512 ├── fuubar-2.3.0.gem.md5 ├── fuubar-2.3.0.gem.sha256 ├── fuubar-2.3.0.gem.sha512 ├── fuubar-2.3.1.gem.md5 ├── fuubar-2.3.1.gem.sha256 ├── fuubar-2.3.1.gem.sha512 ├── fuubar-2.3.2.gem.md5 ├── fuubar-2.3.2.gem.sha256 ├── fuubar-2.3.2.gem.sha512 ├── fuubar-2.4.0.gem.md5 ├── fuubar-2.4.0.gem.sha256 ├── fuubar-2.4.0.gem.sha512 ├── fuubar-2.4.1.gem.md5 ├── fuubar-2.4.1.gem.sha256 ├── fuubar-2.4.1.gem.sha512 ├── fuubar-2.5.0.gem.md5 ├── fuubar-2.5.0.gem.sha256 ├── fuubar-2.5.0.gem.sha512 ├── fuubar-2.5.1.gem.md5 ├── fuubar-2.5.1.gem.sha256 └── fuubar-2.5.1.gem.sha512 ├── fuubar.gemspec ├── gemfiles ├── v1 │ ├── Gemfile │ ├── Gemfile.lock │ └── fuubar.gemspec └── v2 │ ├── Gemfile │ ├── Gemfile.lock │ └── fuubar.gemspec ├── lib ├── fuubar.rb └── fuubar │ └── output.rb ├── settings └── rubygems.yml └── spec └── lib ├── fuubar └── output_spec.rb └── fuubar_spec.rb /.chamber.pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.chamber.pub.pem -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | github: jfelchner 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.github/workflows/locking.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/workflows/locking.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.remarkrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format Fuubar 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.rubocop_core.yml -------------------------------------------------------------------------------- /.rubocop_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.rubocop_local.yml -------------------------------------------------------------------------------- /.rubocop_performance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.rubocop_performance.yml -------------------------------------------------------------------------------- /.rubocop_rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.rubocop_rspec.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.2 2 | -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/.yamllint -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | ./gemfiles/v2/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | ./gemfiles/v2/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/README.md -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/bin/setup -------------------------------------------------------------------------------- /certs/thekompanee.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/certs/thekompanee.pem -------------------------------------------------------------------------------- /checksum/fuubar-2.1.0.beta1.gem.md5: -------------------------------------------------------------------------------- 1 | c900b9cd71d993f179069ca57ade016a 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.1.0.beta1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.1.0.beta1.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.1.0.beta2.gem.md5: -------------------------------------------------------------------------------- 1 | 029c4ef5fb39fd2aeecdf407cbeac760 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.1.0.beta2.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.1.0.beta2.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.1.0.gem.md5: -------------------------------------------------------------------------------- 1 | 4a87848e6cfb2fd1c1caebc3339fd694 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.1.0.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.1.0.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.1.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.1.0.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.1.1.gem.md5: -------------------------------------------------------------------------------- 1 | 075ebe5d53f3ae60954cf0c7444ca955 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.1.1.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.1.1.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.1.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.1.1.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.2.0.gem.md5: -------------------------------------------------------------------------------- 1 | b6a84b44c8b547a6ffd2437f0f48587c 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.2.0.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.2.0.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.2.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.2.0.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta1.gem.md5: -------------------------------------------------------------------------------- 1 | f6557f0c12b75535aa3dbef57e16305f 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta1.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.beta1.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.beta1.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta2.gem.md5: -------------------------------------------------------------------------------- 1 | 380e7046ff1f258af9fec227414f8b34 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta2.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.beta2.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta2.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.beta2.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta3.gem.md5: -------------------------------------------------------------------------------- 1 | 0ac4a65274af7ce822df18c2147e0c97 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta3.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.beta3.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.beta3.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.beta3.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.gem.md5: -------------------------------------------------------------------------------- 1 | 5b23a81e3746f20932824c3c3a62a796 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.0.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.1.gem.md5: -------------------------------------------------------------------------------- 1 | 8210fb1993e9138f44bb01276d93aba9 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.3.1.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.1.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.1.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.2.gem.md5: -------------------------------------------------------------------------------- 1 | 987d5afd89f48e85a06398f82bdd5d6c 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.3.2.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.2.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.3.2.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.3.2.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.4.0.gem.md5: -------------------------------------------------------------------------------- 1 | ce1a285270280c9ab706564a9fb1abee 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.4.0.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.4.0.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.4.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.4.0.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.4.1.gem.md5: -------------------------------------------------------------------------------- 1 | 58f3d54d27bdbb3a0b906dcd86aea9f1 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.4.1.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.4.1.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.4.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.4.1.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.5.0.gem.md5: -------------------------------------------------------------------------------- 1 | 9aa45186fa673abf38f96f884fd225f9 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.5.0.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.5.0.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.5.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.5.0.gem.sha512 -------------------------------------------------------------------------------- /checksum/fuubar-2.5.1.gem.md5: -------------------------------------------------------------------------------- 1 | 6eaff124296cf808c34e19919153e61a 2 | -------------------------------------------------------------------------------- /checksum/fuubar-2.5.1.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.5.1.gem.sha256 -------------------------------------------------------------------------------- /checksum/fuubar-2.5.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/checksum/fuubar-2.5.1.gem.sha512 -------------------------------------------------------------------------------- /fuubar.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/fuubar.gemspec -------------------------------------------------------------------------------- /gemfiles/v1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/gemfiles/v1/Gemfile -------------------------------------------------------------------------------- /gemfiles/v1/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/gemfiles/v1/Gemfile.lock -------------------------------------------------------------------------------- /gemfiles/v1/fuubar.gemspec: -------------------------------------------------------------------------------- 1 | ../../fuubar.gemspec -------------------------------------------------------------------------------- /gemfiles/v2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/gemfiles/v2/Gemfile -------------------------------------------------------------------------------- /gemfiles/v2/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/gemfiles/v2/Gemfile.lock -------------------------------------------------------------------------------- /gemfiles/v2/fuubar.gemspec: -------------------------------------------------------------------------------- 1 | ../../fuubar.gemspec -------------------------------------------------------------------------------- /lib/fuubar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/lib/fuubar.rb -------------------------------------------------------------------------------- /lib/fuubar/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/lib/fuubar/output.rb -------------------------------------------------------------------------------- /settings/rubygems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/settings/rubygems.yml -------------------------------------------------------------------------------- /spec/lib/fuubar/output_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/spec/lib/fuubar/output_spec.rb -------------------------------------------------------------------------------- /spec/lib/fuubar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekompanee/fuubar/HEAD/spec/lib/fuubar_spec.rb --------------------------------------------------------------------------------