hound-cli 0.2.1 → 0.2.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/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/lib/hound/cli.rb +1 -1
- data/lib/hound/hound_config.rb +1 -1
- data/lib/hound/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7eebe942c7543376496f10fd4d4a9fd3a71607a8
|
|
4
|
+
data.tar.gz: c70676072ad46a0e19795877729d3d7d5dd9836f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9bb39af7fc841d0017451f5947ae94302f60a35930a8c42019b59462bbdcaf7d616be95b94b1ee3c1ea3ecb182f20742c92870ed6c83d67bc86d61afc2ffbb3
|
|
7
|
+
data.tar.gz: 661a48624f13362f12ba9c0fbbfb6bb393fa5d26288d8b6e42efaf501944c2bb57194c390ea11805518a11c90f860dd323ae878a94dd6c254a973641036a42a0
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -75,7 +75,7 @@ $ hound rules update --local
|
|
|
75
75
|
$ hound rules update ruby tslint --local
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
> Running update with `--local` option will create a hound.yml file in the current path too.
|
|
78
|
+
> Running update with `--local` option will create a .hound.yml file in the current path too.
|
|
79
79
|
|
|
80
80
|
## Contributing
|
|
81
81
|
|
data/lib/hound/cli.rb
CHANGED
data/lib/hound/hound_config.rb
CHANGED
|
@@ -8,7 +8,7 @@ module HoundConfig
|
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
def enabled_for?(linter_name)
|
|
11
|
-
# disabled if linter_name key does not exist in hound.yml
|
|
11
|
+
# disabled if linter_name key does not exist in .hound.yml
|
|
12
12
|
return false unless content.key?(linter_name)
|
|
13
13
|
options = options_for(linter_name)
|
|
14
14
|
# enabled if linter_name key exists and enabled key is not defined.
|
data/lib/hound/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hound-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Platanus
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|
|
@@ -138,6 +138,7 @@ files:
|
|
|
138
138
|
- ".rspec"
|
|
139
139
|
- ".ruby-version"
|
|
140
140
|
- ".travis.yml"
|
|
141
|
+
- CHANGELOG.md
|
|
141
142
|
- Gemfile
|
|
142
143
|
- LICENSE.txt
|
|
143
144
|
- README.md
|