bundler-updater 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5db1cca0b6f4dfd17c24b9cdc8760705d110727
4
- data.tar.gz: 0550670e20707290d4ef2bfc70e6949e7eef5a70
3
+ metadata.gz: 08f8a003ec7cd1addadebfa2c6d543ac3c264b1f
4
+ data.tar.gz: 336f1481ed3f0ae6d48d088af6c39ce0b0c98050
5
5
  SHA512:
6
- metadata.gz: 340fb48193b2fa2a97bb3c122fc4b466fac4af68baff5d2a73f5b17a57adf6df21ce1732bad58ceb7dee77b0606d59e7ad6cd45602bc4ff231ac71ff9a71907a
7
- data.tar.gz: aa061f5fa1da49a445739a3b1f7fdbc79e1cceb4b9580f4c9f83552e50fa5ba31ee58f75805efee1b1f2c58c05288b19f0720a331131934c69a0d520ef321a98
6
+ metadata.gz: 8b61e7b730a9a9274ad4e7c6fee015e7126407c298f52dcbea67ea13dedf2dfde1f369894ad35e9ec8e23aa870903db409715ff8b583576e2b27df1398c38c35
7
+ data.tar.gz: dad5ee0da75706bc461e838e01909c39320601119c0db76496320717ffd6d512d898eb84f4c2cf6691dcd1a4c766b52d2ab38a623285c5dfecf220ee9b06e54c
data/README.md CHANGED
@@ -33,7 +33,7 @@ $ bundle update --interactive
33
33
 
34
34
  ## Contributing
35
35
 
36
- 1. Fork it ( https://github.com/[my-github-username]/bundler-updater/fork )
36
+ 1. Fork it ( https://github.com/wireframe/bundler-updater/fork )
37
37
  2. Create your feature branch (`git checkout -b my-new-feature`)
38
38
  3. Commit your changes (`git commit -am 'Add some feature'`)
39
39
  4. Push to the branch (`git push origin my-new-feature`)
@@ -1,3 +1,4 @@
1
+ require 'bundler'
1
2
  require 'thor'
2
3
 
3
4
  module Bundler
@@ -17,6 +18,7 @@ module Bundler
17
18
  # see bundler/lib/bundler/cli/outdated.rb
18
19
  def outdated_gems_to_update
19
20
  @gems_to_update ||= begin
21
+ say 'Scanning for outdated gems...'
20
22
  gems_to_update = []
21
23
 
22
24
  all_gem_specs.each do |current_spec|
@@ -32,7 +34,7 @@ module Bundler
32
34
  end
33
35
  end
34
36
  end
35
- gems_to_update
37
+ gems_to_update.sort
36
38
  end
37
39
  end
38
40
 
@@ -1,5 +1,5 @@
1
1
  module Bundler
2
2
  module Updater
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Sonnek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-25 00:00:00.000000000 Z
11
+ date: 2014-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor