quality 20.0.0 → 20.0.1
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 +4 -4
- data/lib/quality/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13eeadb786c7b82b5f01a6cce2fb986f4bb8cfd8
|
|
4
|
+
data.tar.gz: 639ea76c5d86e4a6a5ce534a9c7961c4391f0b65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 100603f2f30b61875ce94c9609bef9f89012109b4a7f099373719544b5af708b90c190c870cd3b05500c1d5772485bde6e7d56c9b2ec44a767124984c2fb8780
|
|
7
|
+
data.tar.gz: e2f844e995b9614e512c23758b4d3a70dab56f65fc3a3a0ad1b3600abb0085143a6888d0042ef38bc10442ad182e6f55d7df3beaafb096531a3052156add655d
|
data/README.md
CHANGED
|
@@ -106,13 +106,13 @@ Quality::Rake::Task.new do |t|
|
|
|
106
106
|
t.source_files_exclude_glob =
|
|
107
107
|
'{lib/whatever/imported_file.rb,lib/vendor/**/*.rb}'
|
|
108
108
|
|
|
109
|
-
# Extensions for Ruby language files--defaults to
|
|
109
|
+
# Extensions for Ruby language files--defaults to rb,rake
|
|
110
110
|
t.ruby_file_extensions_arr = %w(rb rake)
|
|
111
111
|
|
|
112
112
|
# Extensions for all source files--defaults to
|
|
113
|
-
#
|
|
114
|
-
t.
|
|
115
|
-
|
|
113
|
+
# rb,rake,swift,cpp,c,java,py,clj,cljs,scala,js,yml,sh,json
|
|
114
|
+
t.source_file_extensions_arr =
|
|
115
|
+
%w(rb rake swift cpp c java py clj cljs scala js yml sh json)
|
|
116
116
|
|
|
117
117
|
# Relative path to output directory where *_high_water_mark
|
|
118
118
|
# files will be read/written
|
data/lib/quality/version.rb
CHANGED