yamllint 0.0.5 → 0.0.6

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: 45b07126038edcee8ce716daddcb79a5ea7336f4
4
- data.tar.gz: efa5a3611aed9f1efa45ebbabdb304f880e416b6
3
+ metadata.gz: 994ab5e88dd44f839783c37dc58fa10e903e5597
4
+ data.tar.gz: bae8d036bc69dc4e69632712537e5bacdf66917e
5
5
  SHA512:
6
- metadata.gz: b5b2c629227250f39bfd15f5adc63dbe333dcefbecff06e064f76b8588386bd58bf72244819f378d4f11ef99a4f19aa274d2767359a7300efa2e7bb34cb7833a
7
- data.tar.gz: f9e6a259111e92243637d8e3974b98963ecaeb65bb11d0f743237a23598072610b7fa9ff5d6a8acb55bb0adeab28674846dba0ec76d11c649bbcbba3833b67f5
6
+ metadata.gz: 9299b517e2f053295d3d25f8c5d9d1e0997bc3506b6215a65f241d0cdc6dc0709aa7cdce8f0c1e5eca4366a189fbcca84e998fb8975fe29273efa944163cdd39
7
+ data.tar.gz: 7f4a60a6f1ee607d5320c9159ff7858b1d74dedfb48aaff074a21eb81a45be0df066e86ec6b2611fa0b08fd4889219b66a0dafb6875ae859a7533276453f2795
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@ YamlLint gem CHANGELOG
2
2
  ======================
3
3
  This file is used to list changes made in each version of the YamlLint gem.
4
4
 
5
+ v0.0.6 (2015-05-13)
6
+ -------------------
7
+ - **[ISSUE #7](https://github.com/shortdudey123/yamllint/issues/7)** - Detects dupe keys on arrays of hashes (**Proper fix**)
8
+
5
9
  v0.0.5 (2015-05-05)
6
10
  -------------------
7
11
  - **[ISSUE #7](https://github.com/shortdudey123/yamllint/issues/7)** - Detects dupe keys on arrays of hashes
@@ -141,10 +141,8 @@ module YamlLint
141
141
 
142
142
  # Get the data and send it off for duplicate key validation
143
143
  def parse(psych_parse_data)
144
- data_start = psych_parse_data.handler.root.children[0].children[0]
145
- hash_start('')
144
+ data_start = psych_parse_data.handler.root.children[0]
146
145
  parse_recurse(data_start)
147
- hash_end('')
148
146
  end
149
147
 
150
148
  private
@@ -2,5 +2,5 @@
2
2
  #
3
3
  # YamlLint checks YAML files for correct syntax
4
4
  module YamlLint
5
- VERSION = '0.0.5'
5
+ VERSION = '0.0.6'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamllint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grant Ridder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-06 00:00:00.000000000 Z
11
+ date: 2015-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: trollop
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  version: '0'
184
184
  requirements: []
185
185
  rubyforge_project:
186
- rubygems_version: 2.2.2
186
+ rubygems_version: 2.4.5
187
187
  signing_key:
188
188
  specification_version: 4
189
189
  summary: YAML lint checker