gem-outdated 0.0.1 → 0.1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) Gert Goet
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,35 @@
1
+ Overview
2
+ ========
3
+
4
+ The default 'gem outdated' considers *all* gems. For large gemsets this means that:
5
+ 1. it takes some time
6
+ 2. it can produce a long list of gems
7
+
8
+ A quick check for a specific gem is not easy in this way.
9
+ This gem tries to solve this by letting the command accept a string (like the search-command).
10
+
11
+ Usage
12
+ -----
13
+
14
+ $> gem outdated rspec
15
+ rspec (2.4.0 < 2.5.0)
16
+ rspec-core (2.4.0 < 2.5.1)
17
+ rspec-expectations (2.4.0 < 2.5.0)
18
+ rspec-mocks (2.4.0 < 2.5.0)
19
+ rspec-rails (2.4.1 < 2.5.0)
20
+
21
+ $> gem outdated ^rspec$
22
+ rspec (2.4.0 < 2.5.0)
23
+
24
+
25
+ Installation
26
+ ------------
27
+
28
+ ### [RubyGems](http://rubygems.org/)
29
+
30
+ $ gem install gem-outdated
31
+
32
+ Author
33
+ ------
34
+
35
+ Gert Goet (eval) :: gert@thinkcreate.nl :: @gertgoet
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
9
9
  s.authors = ["Gert Goet"]
10
10
  s.email = ["gert@thinkcreate.nl"]
11
11
  s.homepage = ""
12
- s.summary = %q{A better gem outdated}
13
- s.description = %q{A better gem outdated}
12
+ s.summary = %q{gem outdated => gem outdated STRING}
13
+ s.description = %q{gem outdated => gem outdated STRING}
14
14
 
15
15
  s.rubyforge_project = "gem-outdated"
16
16
 
@@ -1,3 +1,3 @@
1
1
  module GemOutdated
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem-outdated
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 9
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 0
9
8
  - 1
10
- version: 0.0.1
9
+ version: "0.1"
11
10
  platform: ruby
12
11
  authors:
13
12
  - Gert Goet
@@ -34,7 +33,7 @@ dependencies:
34
33
  version: 2.3.0
35
34
  type: :development
36
35
  version_requirements: *id001
37
- description: A better gem outdated
36
+ description: gem outdated => gem outdated STRING
38
37
  email:
39
38
  - gert@thinkcreate.nl
40
39
  executables: []
@@ -47,6 +46,8 @@ files:
47
46
  - .gitignore
48
47
  - .rvmrc
49
48
  - Gemfile
49
+ - LICENSE
50
+ - README.md
50
51
  - Rakefile
51
52
  - gem-outdated.gemspec
52
53
  - lib/gem_outdated.rb
@@ -88,6 +89,6 @@ rubyforge_project: gem-outdated
88
89
  rubygems_version: 1.3.7
89
90
  signing_key:
90
91
  specification_version: 3
91
- summary: A better gem outdated
92
+ summary: gem outdated => gem outdated STRING
92
93
  test_files: []
93
94