update_repo 0.9.3 → 0.9.4
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/.travis.yml +1 -0
- data/lib/update_repo/version.rb +1 -1
- data/lib/update_repo.rb +3 -0
- 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: 0327fdf6aa5e1eb35ac3efc393f27d5f18423fc3
|
4
|
+
data.tar.gz: 7fd9292af4566176d19f5c67a7942cb42ba72bb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5097699d78b93cc61f1e60c4f13914bbb1f58bf6dcb9015b56aa2321c72034a021dae9ed8d9cd82b66aac1b63093e6868581f68a2df31ba32ac4fbf46605f8f2
|
7
|
+
data.tar.gz: aecd3d79c10018bb60ff999822f3da31ab59390113c357768fb088f6a5d96c566d368bdba31307065e61dd6c35437aed0055745c1b30e00abc5f30deaf175410
|
data/.travis.yml
CHANGED
data/lib/update_repo/version.rb
CHANGED
data/lib/update_repo.rb
CHANGED
@@ -10,6 +10,7 @@ require 'colorize'
|
|
10
10
|
require 'confoog'
|
11
11
|
require 'trollop'
|
12
12
|
require 'versionomy'
|
13
|
+
require 'pp'
|
13
14
|
|
14
15
|
# Overall module with classes performing the functionality
|
15
16
|
# Contains Class UpdateRepo::WalkRepo
|
@@ -107,7 +108,9 @@ module UpdateRepo
|
|
107
108
|
# tests to see if the given directory is an exception and should be skipped
|
108
109
|
# @param dir [string] Directory to be checked
|
109
110
|
# @return [boolean] True if this is NOT an exception, False otherwise
|
111
|
+
# ignore the :reek:NilCheck for this function, may refactor later
|
110
112
|
def notexception?(dir)
|
113
|
+
return true if @cmd.true_cmd(:exceptions).nil?
|
111
114
|
!config['exceptions'].include?(File.basename(dir))
|
112
115
|
end
|
113
116
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: update_repo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grant Ramsay
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|