https://github.com/eval/gem-outdated
gem outdated => gem outdated STRING
https://github.com/eval/gem-outdated
Last synced: 3 months ago
JSON representation
gem outdated => gem outdated STRING
- Host: GitHub
- URL: https://github.com/eval/gem-outdated
- Owner: eval
- License: mit
- Created: 2011-02-14T14:33:39.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2015-10-06T05:02:05.000Z (over 9 years ago)
- Last Synced: 2025-01-13T01:44:30.801Z (5 months ago)
- Language: Ruby
- Homepage: https://github.com/eval/gem-outdated
- Size: 136 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Overview
========The default 'gem outdated' considers *all* gems. For large gemsets this means that:
1. it takes some time
2. it can produce a long list of gemsA quick check for a specific gem is not easy in this way.
This gem tries to solve this by letting the command accept a string (like the search-command).Usage
-----$> gem outdated rspec
rspec (2.4.0 < 2.5.0)
rspec-core (2.4.0 < 2.5.1)
rspec-expectations (2.4.0 < 2.5.0)
rspec-mocks (2.4.0 < 2.5.0)
rspec-rails (2.4.1 < 2.5.0)$> gem outdated ^rspec$
rspec (2.4.0 < 2.5.0)Installation
------------### [RubyGems](http://rubygems.org/)
$ gem install gem-outdated
Author
------Gert Goet (eval) :: [email protected] :: @gertgoet