gitextract_v40a_637/ ├── .circleci/ │ └── config.yml ├── .config/ │ └── rubocop/ │ └── config.yml ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ └── issue.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .ruby-version ├── CITATION.cff ├── Gemfile ├── LICENSE.adoc ├── README.adoc ├── Rakefile ├── bin/ │ ├── rake │ └── run └── lib/ ├── options.sh ├── templates/ │ ├── .agignore.tt │ ├── .bash_profile.tt │ ├── .bashrc.tt │ ├── .cache/ │ │ └── pgenv/ │ │ └── config/ │ │ └── default.conf.tt │ ├── .config/ │ │ ├── aprc.tt │ │ ├── bash/ │ │ │ ├── aliases.sh.tt │ │ │ ├── colors.sh.tt │ │ │ ├── environment.sh.tt │ │ │ ├── functions-private.sh.tt │ │ │ ├── functions-public.sh.tt │ │ │ └── prompt.sh.tt │ │ ├── duti/ │ │ │ └── configuration.duti.tt │ │ ├── git/ │ │ │ ├── attributes.tt │ │ │ ├── commit_message.txt.tt │ │ │ ├── configuration.tt │ │ │ ├── hooks/ │ │ │ │ ├── applypatch-msg.tt │ │ │ │ ├── commit-msg.tt │ │ │ │ ├── extensions/ │ │ │ │ │ ├── brakeman.sh.tt │ │ │ │ │ ├── bundler.sh.tt │ │ │ │ │ ├── comments.sh.tt │ │ │ │ │ ├── ctags.sh.tt │ │ │ │ │ ├── dotenv.sh.tt │ │ │ │ │ ├── git.sh.tt │ │ │ │ │ ├── hadolint.sh.tt │ │ │ │ │ ├── java_script.sh.tt │ │ │ │ │ ├── license_finder.sh.tt │ │ │ │ │ ├── osv.sh.tt │ │ │ │ │ ├── reek.sh.tt │ │ │ │ │ ├── rspec.sh.tt │ │ │ │ │ ├── rubocop.sh.tt │ │ │ │ │ └── support.sh.tt │ │ │ │ ├── post-applypatch.tt │ │ │ │ ├── post-checkout.tt │ │ │ │ ├── post-commit.tt │ │ │ │ ├── post-merge.tt │ │ │ │ ├── post-rewrite.tt │ │ │ │ ├── pre-applypatch.tt │ │ │ │ ├── pre-commit.tt │ │ │ │ ├── pre-merge-commit.tt │ │ │ │ ├── pre-push.tt │ │ │ │ ├── pre-rebase.tt │ │ │ │ └── prepare-commit-msg.tt │ │ │ ├── ignore.tt │ │ │ └── template/ │ │ │ └── mkdir.command │ │ ├── irb/ │ │ │ └── irbrc.tt │ │ ├── pgenv/ │ │ │ └── initialize.tt │ │ └── rubocop/ │ │ └── config.yml.tt │ ├── .ctags.tt │ ├── .erdconfig.tt │ ├── .hushlogin.tt │ ├── .inputrc.tt │ ├── .npmrc.tt │ ├── .psqlrc.tt │ ├── .ruby-version.tt │ └── .vimrc.tt └── utilities.sh