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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a037b6f1a2fa93d473bac2cc0558a97c3960e3b
4
- data.tar.gz: 71ba7ada24450e9fbc30868047049e715e51b9ba
3
+ metadata.gz: 7eebe942c7543376496f10fd4d4a9fd3a71607a8
4
+ data.tar.gz: c70676072ad46a0e19795877729d3d7d5dd9836f
5
5
  SHA512:
6
- metadata.gz: 21567c689a7f428ff52e8b42aabfea96231a7fc2fc4f7898d85e69527e7aa1f34b9204de6c587866bab75e1e7b62a47441e5b1095dac0015da1ef8ff0c2dbfba
7
- data.tar.gz: 3619898cc46949c3d4af9c816756f3560b63421f5225510176b776b0d6bd3413e31ea07e1a01985317d6375493bf1ef8dd6371ac1c066977dc1106a325b51d7a
6
+ metadata.gz: e9bb39af7fc841d0017451f5947ae94302f60a35930a8c42019b59462bbdcaf7d616be95b94b1ee3c1ea3ecb182f20742c92870ed6c83d67bc86d61afc2ffbb3
7
+ data.tar.gz: 661a48624f13362f12ba9c0fbbfb6bb393fa5d26288d8b6e42efaf501944c2bb57194c390ea11805518a11c90f860dd323ae878a94dd6c254a973641036a42a0
data/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ # Changelog
2
+
3
+ ## 0.2.2
4
+
5
+ Bugfixes:
6
+ - Looking for wrong hound.yml path does not trigger local update.
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
@@ -25,7 +25,7 @@ module Hound
25
25
  end
26
26
 
27
27
  def hound_yml_exist?
28
- File.exist?(File.join(File.expand_path('.'), 'hound.yml'))
28
+ File.exist?(File.join(File.expand_path('.'), '.hound.yml'))
29
29
  end
30
30
  end
31
31
  end
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Hound
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
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.1
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-03 00:00:00.000000000 Z
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