gemr 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +0 -2
- data/README.md +16 -8
- data/gemr.gemspec +0 -2
- data/lib/gemr/version.rb +1 -1
- metadata +4 -16
- data/lib/gemr/rubygems/openssl.rb +0 -7
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,15 +1,14 @@
|
|
1
|
-
gemr
|
2
|
-
====================================
|
1
|
+
# gemr
|
3
2
|
|
4
|
-
|
3
|
+
A Ruby gem that provides a command line utility for displaying the latest versions of gems.
|
5
4
|
|
6
|
-
Tired of going to rubygems.org to lookup the latest version of gems?
|
5
|
+
Tired of going to [http://rubygems.org](http://rubygems.org) to lookup the latest version of gems? Use gemr from the command line to quickly retrieve entries for your Gemfile.
|
7
6
|
|
8
|
-
##
|
7
|
+
## Installation
|
9
8
|
|
10
9
|
$ gem install gemr
|
11
10
|
|
12
|
-
##
|
11
|
+
## Usage
|
13
12
|
|
14
13
|
Simply pass one or more gem names to the gemr executable, like so:
|
15
14
|
|
@@ -19,7 +18,16 @@ Simply pass one or more gem names to the gemr executable, like so:
|
|
19
18
|
|
20
19
|
Finding latest gem versions...
|
21
20
|
|
22
|
-
gem "porter", "~> 1.
|
23
|
-
gem "rspec-rails", "~> 2.
|
21
|
+
gem "porter", "~> 1.2.1"
|
22
|
+
gem "rspec-rails", "~> 2.10.1"
|
24
23
|
|
25
24
|
The results are formatted for inclusion in your Gemfile.
|
25
|
+
|
26
|
+
## Ruby Support
|
27
|
+
|
28
|
+
Ruby 1.9.2 and up.
|
29
|
+
|
30
|
+
## License
|
31
|
+
|
32
|
+
* Freely distributable and licensed under the [MIT license](http://kjohnston.mit-license.org/license.html).
|
33
|
+
* Copyright (c) 2011-2012 Kenny Johnston [](http://coderwall.com/kjohnston)
|
data/gemr.gemspec
CHANGED
@@ -11,8 +11,6 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.summary = %q{A quick gem for displaying the latest versions of gems.}
|
12
12
|
s.description = %q{A quick gem for displaying the latest versions of gems.}
|
13
13
|
|
14
|
-
s.add_runtime_dependency "json", "~> 1.5.3"
|
15
|
-
|
16
14
|
s.files = `git ls-files`.split("\n")
|
17
15
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
16
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
data/lib/gemr/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,19 +9,8 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
13
|
-
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: json
|
16
|
-
requirement: &2160654540 !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.5.3
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: *2160654540
|
12
|
+
date: 2012-05-08 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
25
14
|
description: A quick gem for displaying the latest versions of gems.
|
26
15
|
email:
|
27
16
|
- kjohnston.ca@gmail.com
|
@@ -37,7 +26,6 @@ files:
|
|
37
26
|
- bin/gemr
|
38
27
|
- gemr.gemspec
|
39
28
|
- lib/gemr.rb
|
40
|
-
- lib/gemr/rubygems/openssl.rb
|
41
29
|
- lib/gemr/rubygems/versions.rb
|
42
30
|
- lib/gemr/version.rb
|
43
31
|
homepage: https://github.com/kjohnston/gemr
|
@@ -60,7 +48,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
48
|
version: '0'
|
61
49
|
requirements: []
|
62
50
|
rubyforge_project:
|
63
|
-
rubygems_version: 1.8.
|
51
|
+
rubygems_version: 1.8.15
|
64
52
|
signing_key:
|
65
53
|
specification_version: 3
|
66
54
|
summary: A quick gem for displaying the latest versions of gems.
|