├── .github └── workflows │ └── build.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── appveyor.yml ├── azure-pipelines-templates ├── steps-macos.yml ├── steps-ubuntu.yml └── steps-windows.yml ├── azure-pipelines.yml ├── bin ├── console └── setup ├── bundle_outdated_formatter.gemspec ├── exe └── bof ├── lib ├── bundle_outdated_formatter.rb └── bundle_outdated_formatter │ ├── cli.rb │ ├── error.rb │ ├── formatter.rb │ ├── formatter │ ├── csv_formatter.rb │ ├── html_formatter.rb │ ├── json_formatter.rb │ ├── markdown_formatter.rb │ ├── terminal_formatter.rb │ ├── tsv_formatter.rb │ ├── xml_formatter.rb │ └── yaml_formatter.rb │ └── version.rb └── spec ├── bundle_outdated_formatter ├── cli_spec.rb ├── formatter │ ├── csv_formatter_spec.rb │ ├── html_formatter_spec.rb │ ├── json_formatter_spec.rb │ ├── markdown_formatter_spec.rb │ ├── terminal_formatter_spec.rb │ ├── tsv_formatter_spec.rb │ ├── xml_formatter_spec.rb │ └── yaml_formatter_spec.rb └── formatter_spec.rb ├── bundle_outdated_formatter_spec.rb └── spec_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines-templates/steps-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/azure-pipelines-templates/steps-macos.yml -------------------------------------------------------------------------------- /azure-pipelines-templates/steps-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/azure-pipelines-templates/steps-ubuntu.yml -------------------------------------------------------------------------------- /azure-pipelines-templates/steps-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/azure-pipelines-templates/steps-windows.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/bin/setup -------------------------------------------------------------------------------- /bundle_outdated_formatter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/bundle_outdated_formatter.gemspec -------------------------------------------------------------------------------- /exe/bof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/exe/bof -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/cli.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/error.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/csv_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/csv_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/html_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/html_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/json_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/json_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/markdown_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/markdown_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/terminal_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/terminal_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/tsv_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/tsv_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/xml_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/xml_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/formatter/yaml_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/lib/bundle_outdated_formatter/formatter/yaml_formatter.rb -------------------------------------------------------------------------------- /lib/bundle_outdated_formatter/version.rb: -------------------------------------------------------------------------------- 1 | module BundleOutdatedFormatter 2 | VERSION = '0.7.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/cli_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/csv_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/csv_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/html_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/html_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/json_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/json_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/markdown_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/markdown_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/terminal_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/terminal_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/tsv_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/tsv_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/xml_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/xml_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter/yaml_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter/yaml_formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter/formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter/formatter_spec.rb -------------------------------------------------------------------------------- /spec/bundle_outdated_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/bundle_outdated_formatter_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emsk/bundle_outdated_formatter/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------