html-proofer 0.6.2 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4dd1152d26b4295d0064e188fedb3f03ed29a657
4
- data.tar.gz: 66cd7fdb07654bdc25d88072e22ee6d1515cae5d
3
+ metadata.gz: 1c8c2059f145655213fdcb6aab0c6591984de648
4
+ data.tar.gz: b681c12b176df979560d243f995184451111fdb0
5
5
  SHA512:
6
- metadata.gz: 88184097748aa9fc7fd4dbc168666be062fa08c70964634df86b874db8e0496f6b9db66f5b31a66fc544accfa3b16f6079fbe8a5aa0f9f9c849313700497d0c7
7
- data.tar.gz: 3fa6a17cbf9d5cd99c05514184ad4017550fc170ec53e2977b2721788af857671a539358b283b0e66b179affcd7bfd6d53be69e5f63e206eba1c32d32f87b619
6
+ metadata.gz: 8b447c12a33e3edb865a8feed07c68026318ffb6feccb5c0b35c2c2e84470623b1385987237451214c3d0617c24475959365e06bb9bc9faf6b8c04793edbc7d7
7
+ data.tar.gz: e0811f6c0635b73f571c080408fe4fee9a75cb71f68c9153979d55e1b40a3e4747b100cb0606786dbf6512ea674b70eaf8d66292921c269a1b5c85035f1eca75
data/html-proofer.gemspec CHANGED
@@ -1,16 +1,16 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
- require 'html/proofer/version'
4
3
 
5
4
  Gem::Specification.new do |gem|
6
5
  gem.name = "html-proofer"
7
- gem.version = HTML::Proofer::VERSION
6
+ gem.version = "0.6.4"
8
7
  gem.authors = ["Garen Torikian"]
9
8
  gem.email = ["gjtorikian@gmail.com"]
10
9
  gem.description = %q{Test your rendered HTML files to make sure they're accurate.}
11
10
  gem.summary = %q{A set of tests to validate your HTML output. These tests check if your image references are legitimate, if they have alt tags, if your internal links are working, and so on. It's intended to be an all-in-one checker for your documentation output.}
12
11
  gem.homepage = "https://github.com/gjtorikian/html-proofer"
13
12
  gem.license = "MIT"
13
+ gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
14
  gem.files = `git ls-files`.split($/)
15
15
  gem.test_files = gem.files.grep(%r{^(spec)/})
16
16
  gem.require_paths = ["lib"]
data/spec/spec_helper.rb CHANGED
@@ -1,8 +1,6 @@
1
1
  require 'bundler/setup'
2
2
  require_relative "../lib/html/proofer"
3
3
 
4
- require File.expand_path('../../lib/html/proofer/version.rb', __FILE__)
5
-
6
4
  FIXTURES_DIR = "spec/html/proofer/fixtures"
7
5
 
8
6
  RSpec.configure do |config|
data/what.rb ADDED
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html-proofer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-25 00:00:00.000000000 Z
11
+ date: 2014-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mercenary
@@ -129,7 +129,6 @@ files:
129
129
  - lib/html/proofer/checks.rb
130
130
  - lib/html/proofer/checks/images.rb
131
131
  - lib/html/proofer/checks/links.rb
132
- - lib/html/proofer/version.rb
133
132
  - spec/html/proofer/fixtures/Screen Shot 2012-08-09 at 7.51.18 AM.png
134
133
  - spec/html/proofer/fixtures/brokenHashExternal.html
135
134
  - spec/html/proofer/fixtures/brokenHashInternal.html
@@ -171,8 +170,8 @@ files:
171
170
  - spec/html/proofer/fixtures/workingDataURIImage.html
172
171
  - spec/html/proofer/images_spec.rb
173
172
  - spec/html/proofer/links_spec.rb
174
- - spec/html/proofer/version_spec.rb
175
173
  - spec/spec_helper.rb
174
+ - what.rb
176
175
  homepage: https://github.com/gjtorikian/html-proofer
177
176
  licenses:
178
177
  - MIT
@@ -241,5 +240,4 @@ test_files:
241
240
  - spec/html/proofer/fixtures/workingDataURIImage.html
242
241
  - spec/html/proofer/images_spec.rb
243
242
  - spec/html/proofer/links_spec.rb
244
- - spec/html/proofer/version_spec.rb
245
243
  - spec/spec_helper.rb
@@ -1,5 +0,0 @@
1
- module HTML
2
- class Proofer
3
- VERSION = "0.6.2"
4
- end
5
- end
@@ -1,9 +0,0 @@
1
- require "spec_helper"
2
-
3
- describe HTML::Proofer do
4
-
5
- it "must be defined" do
6
- HTML::Proofer::VERSION.should_not be_nil
7
- end
8
-
9
- end