autowow 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -1
- data/lib/autowow/features/rbenv.rb +5 -3
- data/lib/autowow/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: 2c4b769e2313541711b90200df6e69a0a4a168db
|
4
|
+
data.tar.gz: ed347c23e07874f847081e950e9ae321415b103d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f2a421efd1cabb89553394b6f81c6fdf244fa861854a3c14ef08b542bbb77423f82f659987635528bfac2fd65cddedac414c63832c9937cb5a73f5c42dfdbc5
|
7
|
+
data.tar.gz: c14bf2b603be841dc3786cfdded78481414c37e0b7f87748e2c6ba4e33f2a833f8627ecfb0be8a28fdd4ada595c7cc66a72c8119f6e6e30f18c50ee77495e9a6
|
data/.travis.yml
CHANGED
@@ -2,4 +2,8 @@ sudo: false
|
|
2
2
|
language: ruby
|
3
3
|
rvm:
|
4
4
|
- 2.4.1
|
5
|
-
before_install:
|
5
|
+
before_install:
|
6
|
+
- gem install bundler -v 1.15.3
|
7
|
+
- git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
|
8
|
+
- git fetch --unshallow --tags
|
9
|
+
- git checkout $TRAVIS_BRANCH
|
@@ -19,15 +19,17 @@ module Autowow
|
|
19
19
|
def used_versions
|
20
20
|
rubies = []
|
21
21
|
Fs.in_place_or_subdirs(Vcs.is_git?) do
|
22
|
-
result = quiet.run(version)
|
23
|
-
rubies.concat(result.clean_lines)
|
22
|
+
result = quiet.run!(version)
|
23
|
+
rubies.concat(result.out.clean_lines) if result.success?
|
24
24
|
end
|
25
25
|
rubies.uniq
|
26
26
|
end
|
27
27
|
|
28
28
|
def ruby_aliases
|
29
29
|
ret = {}
|
30
|
-
quiet.run(aliases)
|
30
|
+
result = quiet.run!(aliases)
|
31
|
+
return ret unless result.success?
|
32
|
+
result.out.clean_lines.each do |line|
|
31
33
|
ret[line.split(' => ')[0]] = line.split(' => ')[1]
|
32
34
|
end
|
33
35
|
ret
|
data/lib/autowow/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autowow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- thisismydesign
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-11-
|
11
|
+
date: 2017-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: easy_logging
|