bundler-updater 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/bundler/updater/cli.rb +3 -1
- data/lib/bundler/updater/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 08f8a003ec7cd1addadebfa2c6d543ac3c264b1f
|
|
4
|
+
data.tar.gz: 336f1481ed3f0ae6d48d088af6c39ce0b0c98050
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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/
|
|
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`)
|
data/lib/bundler/updater/cli.rb
CHANGED
|
@@ -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
|
|
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.
|
|
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-
|
|
11
|
+
date: 2014-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|