gemr 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,5 +1,3 @@
1
1
  source :rubygems
2
2
 
3
3
  gemspec
4
-
5
- gem "json", "~> 1.5.3"
data/README.md CHANGED
@@ -1,15 +1,14 @@
1
- gemr -- A quick gem for displaying the latest versions of gems.
2
- ====================================
1
+ # gemr
3
2
 
4
- ## DESCRIPTION
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? Gemr allows you to quickly query for the latest versions of any gem on Rubygems from the command line!
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
- ## INSTALLATION
7
+ ## Installation
9
8
 
10
9
  $ gem install gemr
11
10
 
12
- ## USAGE
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.0.2"
23
- gem "rspec-rails", "~> 2.6.1"
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 [![endorse](http://api.coderwall.com/kjohnston/endorsecount.png)](http://coderwall.com/kjohnston)
@@ -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) }
@@ -1,3 +1,3 @@
1
1
  module Gemr
2
- VERSION = "0.0.4" unless defined?(VERSION)
2
+ VERSION = "0.0.5" unless defined?(VERSION)
3
3
  end
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
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: 2011-09-10 00:00:00.000000000Z
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.6
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.
@@ -1,7 +0,0 @@
1
- # Don't care if cert is invalid, we're just reading
2
- module OpenSSL
3
- module SSL
4
- remove_const :VERIFY_PEER if defined?(VERIFY_PEER)
5
- end
6
- end
7
- OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE