├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── bundle-outdated ├── bundle_outdated.gemspec ├── lib ├── bundle_outdated.rb └── bundle_outdated │ ├── gem_dependency.rb │ ├── searcher.rb │ └── version.rb └── test ├── bundle_outdated_test.rb ├── gem_dependency_test.rb ├── searcher_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/bundle-outdated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/bin/bundle-outdated -------------------------------------------------------------------------------- /bundle_outdated.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/bundle_outdated.gemspec -------------------------------------------------------------------------------- /lib/bundle_outdated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/lib/bundle_outdated.rb -------------------------------------------------------------------------------- /lib/bundle_outdated/gem_dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/lib/bundle_outdated/gem_dependency.rb -------------------------------------------------------------------------------- /lib/bundle_outdated/searcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/lib/bundle_outdated/searcher.rb -------------------------------------------------------------------------------- /lib/bundle_outdated/version.rb: -------------------------------------------------------------------------------- 1 | module BundleOutdated 2 | VERSION = "0.0.4" 3 | end 4 | -------------------------------------------------------------------------------- /test/bundle_outdated_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/test/bundle_outdated_test.rb -------------------------------------------------------------------------------- /test/gem_dependency_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/test/gem_dependency_test.rb -------------------------------------------------------------------------------- /test/searcher_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/test/searcher_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scoop/bundle_outdated/HEAD/test/test_helper.rb --------------------------------------------------------------------------------