├── .github_changelog_generator ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── manpages.rb ├── manpages │ ├── gem_version.rb │ ├── install.rb │ ├── man_files.rb │ ├── uninstall.rb │ └── version.rb ├── rubygems │ └── commands │ │ └── manpages_command.rb └── rubygems_plugin.rb ├── manpages.gemspec ├── rbenv ├── hooks │ ├── install-man.bash │ └── version-name-change-man.bash ├── rbenv_hook_install.sh ├── remove_hook_folders.sh └── vars.sh └── spec ├── data └── man │ ├── example │ ├── example.1 │ ├── example.2 │ └── man1 │ └── extra.1 ├── manpages ├── gem_version_spec.rb ├── install_spec.rb ├── man_files_spec.rb └── uninstall_spec.rb └── spec_helper.rb /.github_changelog_generator: -------------------------------------------------------------------------------- 1 | unreleased=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/manpages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/lib/manpages.rb -------------------------------------------------------------------------------- /lib/manpages/gem_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/lib/manpages/gem_version.rb -------------------------------------------------------------------------------- /lib/manpages/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/lib/manpages/install.rb -------------------------------------------------------------------------------- /lib/manpages/man_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/lib/manpages/man_files.rb -------------------------------------------------------------------------------- /lib/manpages/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/lib/manpages/uninstall.rb -------------------------------------------------------------------------------- /lib/manpages/version.rb: -------------------------------------------------------------------------------- 1 | module Manpages 2 | VERSION = "0.6.1".freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/rubygems/commands/manpages_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/lib/rubygems/commands/manpages_command.rb -------------------------------------------------------------------------------- /lib/rubygems_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/lib/rubygems_plugin.rb -------------------------------------------------------------------------------- /manpages.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/manpages.gemspec -------------------------------------------------------------------------------- /rbenv/hooks/install-man.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/rbenv/hooks/install-man.bash -------------------------------------------------------------------------------- /rbenv/hooks/version-name-change-man.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/rbenv/hooks/version-name-change-man.bash -------------------------------------------------------------------------------- /rbenv/rbenv_hook_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/rbenv/rbenv_hook_install.sh -------------------------------------------------------------------------------- /rbenv/remove_hook_folders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/rbenv/remove_hook_folders.sh -------------------------------------------------------------------------------- /rbenv/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/rbenv/vars.sh -------------------------------------------------------------------------------- /spec/data/man/example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/data/man/example.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/data/man/example.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/data/man/man1/extra.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/manpages/gem_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/spec/manpages/gem_version_spec.rb -------------------------------------------------------------------------------- /spec/manpages/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/spec/manpages/install_spec.rb -------------------------------------------------------------------------------- /spec/manpages/man_files_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/spec/manpages/man_files_spec.rb -------------------------------------------------------------------------------- /spec/manpages/uninstall_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/spec/manpages/uninstall_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitboxer/manpages/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------