html_validation 1.1.2 → 1.1.3
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/lib/html_validation.rb +2 -1
- data/lib/html_validation/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a14f92b82d273a901cd9699da7962d6979dff15
|
|
4
|
+
data.tar.gz: 4fe843bbb5dd49f74380d10dda1b985d520927e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec8af3ec8def23bd515561f5e4ce57e3b71ffdcfee915da193108e29826f7b9e07073917b804a099d900d1425d97f4c4798eeb4d0664434a8b7861588147e4c9
|
|
7
|
+
data.tar.gz: 683f22aac5d805990b85effedbbd20af6f892d069c7c26ef188a9b7448623fa5bd434494ee6f10d44c5a1365d6c740e4e17a4032ee35e90f6ef2abfe0d278427
|
data/lib/html_validation.rb
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
require 'rbconfig'
|
|
2
|
+
require 'fileutils'
|
|
2
3
|
require File.expand_path(File.join(File.dirname(__FILE__), 'html_validation/page_validations'))
|
|
3
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'html_validation/html_validation_result'))
|
|
4
|
+
require File.expand_path(File.join(File.dirname(__FILE__), 'html_validation/html_validation_result'))
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
module PageValidations
|
|
2
|
-
HTML_VALIDATOR_VERSION = "1.1.
|
|
3
|
-
end
|
|
2
|
+
HTML_VALIDATOR_VERSION = "1.1.3"
|
|
3
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html_validation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Beland
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: HTML Validation lets you validate html locally. Lets you build html validation
|
|
14
14
|
into your test suite, but break the rules if you must.
|
|
@@ -45,7 +45,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
45
45
|
version: '0'
|
|
46
46
|
requirements: []
|
|
47
47
|
rubyforge_project:
|
|
48
|
-
rubygems_version: 2.
|
|
48
|
+
rubygems_version: 2.4.2
|
|
49
49
|
signing_key:
|
|
50
50
|
specification_version: 4
|
|
51
51
|
summary: Local HTML validation for tests and RSpec.
|