Skip to content

Commit

Permalink
Merge pull request #4 from gjtorikian/fix-gem-malarky
Browse files Browse the repository at this point in the history
Set to v0.0.16
  • Loading branch information
gjtorikian committed Oct 9, 2013
2 parents 5d0b8d6 + e805d5d commit c3837fc
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 27 deletions.
10 changes: 1 addition & 9 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
source "http://rubygems.org"

gem "nokogiri", "1.6.0"
gem "typhoeus", "~> 0.6.3"
gem "colored", "~> 1.2"
gem 'rake'

group :test, :development do
gem "rspec", "~> 2.13.0"
gem "html-pipeline", "~> 0.0.12"
end
gemspec
38 changes: 22 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
PATH
remote: .
specs:
html-proofer (0.0.16)
colored (~> 1.2)
nokogiri (= 1.6.0)
typhoeus (~> 0.6.3)

GEM
remote: http://rubygems.org/
specs:
Expand All @@ -7,16 +15,16 @@ GEM
multi_json (~> 1.3)
thread_safe (~> 0.1)
tzinfo (~> 0.3.37)
atomic (1.1.10)
atomic (1.1.14)
colored (1.2)
diff-lcs (1.2.4)
escape_utils (0.3.2)
ethon (0.5.12)
ethon (0.6.1)
ffi (>= 1.3.0)
mime-types (~> 1.18)
ffi (1.9.0)
gemoji (1.4.0)
github-markdown (0.5.3)
github-markdown (0.5.5)
html-pipeline (0.0.14)
activesupport (>= 2)
escape_utils (~> 0.3)
Expand All @@ -25,11 +33,11 @@ GEM
nokogiri (~> 1.4)
rinku (~> 1.7)
sanitize (~> 2.0)
i18n (0.6.4)
mime-types (1.23)
mini_portile (0.5.0)
i18n (0.6.5)
mime-types (1.25)
mini_portile (0.5.1)
minitest (4.7.5)
multi_json (1.7.7)
multi_json (1.8.1)
nokogiri (1.6.0)
mini_portile (~> 0.5.0)
rake (10.1.0)
Expand All @@ -42,21 +50,19 @@ GEM
rspec-expectations (2.13.0)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.13.1)
sanitize (2.0.4)
nokogiri (~> 1.6.0)
thread_safe (0.1.0)
sanitize (2.0.6)
nokogiri (>= 1.4.4)
thread_safe (0.1.3)
atomic
typhoeus (0.6.3)
ethon (~> 0.5.11)
tzinfo (0.3.37)
typhoeus (0.6.5)
ethon (~> 0.6.1)
tzinfo (0.3.38)

PLATFORMS
ruby

DEPENDENCIES
colored (~> 1.2)
html-pipeline (~> 0.0.12)
nokogiri (= 1.6.0)
html-proofer!
rake
rspec (~> 2.13.0)
typhoeus (~> 0.6.3)
10 changes: 9 additions & 1 deletion html-proofer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,16 @@ Gem::Specification.new do |gem|
gem.description = %q{Test your rendered HTML files to make sure they're accurate.}
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.}
gem.homepage = "https://github.com/gjtorikian/html-proofer"

gem.license = "MIT"
gem.files = `git ls-files`.split($/)
gem.test_files = gem.files.grep(%r{^(spec)/})
gem.require_paths = ["lib"]

gem.add_dependency "nokogiri", "1.6.0"
gem.add_dependency "colored", "~> 1.2"
gem.add_dependency "typhoeus", "~> 0.6.3"

gem.add_development_dependency "html-pipeline", "~> 0.0.12"
gem.add_development_dependency "rspec", "~> 2.13.0"
gem.add_development_dependency "rake"
end
2 changes: 1 addition & 1 deletion lib/html/proofer/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module HTML
class Proofer
VERSION = "0.0.15"
VERSION = "0.0.16"
end
end

0 comments on commit c3837fc

Please sign in to comment.