quality 1.1.1 → 1.2.0
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 +2 -2
- data/lib/quality/rake/task.rb +3 -3
- data/lib/quality/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: 9b7bcd6756df46794914fc8b3bd3a11b4b025382
|
|
4
|
+
data.tar.gz: f5384081e32874f06ea30117585748477b76e7c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dae206fcd6c6013da70740077620154f77f09ed436634ceadf4b9d6e7d63c53cfe2bfab2d394eea8fe44c2854a216136fe50c5490c8dbe410ecdf9ad1a25ceae
|
|
7
|
+
data.tar.gz: 601e6a2d4b8339580a0802742ebd5e308461d2a6816be27f37543513f90df2ee48365ee0b566b05fba1e98f05aa94504d2e4c793de50c9e93197a80016ed1257
|
data/README.md
CHANGED
|
@@ -50,8 +50,8 @@ Quality::Rake::Task.new { |t|
|
|
|
50
50
|
|
|
51
51
|
# Array of directory names which contain ruby files to analyze.
|
|
52
52
|
#
|
|
53
|
-
# Defaults to %w{lib test
|
|
54
|
-
t.ruby_dirs = %w{lib test
|
|
53
|
+
# Defaults to %w{lib test spec feature}, which translates to *.rb in the base directory, as well as lib, test, spec, and feature.
|
|
54
|
+
t.ruby_dirs = %w{lib test spec feature}
|
|
55
55
|
|
|
56
56
|
# Relative path to output directory where *_high_water_mark
|
|
57
57
|
# files will be read/written
|
data/lib/quality/rake/task.rb
CHANGED
|
@@ -42,8 +42,8 @@ module Quality
|
|
|
42
42
|
|
|
43
43
|
# Array of directory names which contain ruby files to analyze.
|
|
44
44
|
#
|
|
45
|
-
# Defaults to %w{lib test
|
|
46
|
-
# the base directory, as well as lib, test, and
|
|
45
|
+
# Defaults to %w{lib test spec feature}, which translates to *.rb in
|
|
46
|
+
# the base directory, as well as lib, test, and feature.
|
|
47
47
|
attr_writer :ruby_dirs
|
|
48
48
|
|
|
49
49
|
# Relative path to output directory where *_high_water_mark
|
|
@@ -181,7 +181,7 @@ module Quality
|
|
|
181
181
|
end
|
|
182
182
|
|
|
183
183
|
def ruby_dirs
|
|
184
|
-
@ruby_dirs ||= %w{lib test
|
|
184
|
+
@ruby_dirs ||= %w{lib test spec feature}
|
|
185
185
|
end
|
|
186
186
|
|
|
187
187
|
def ruby_files
|
data/lib/quality/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: quality
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vince Broz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cane
|