Sha256: fdfee5d0afcc341538eb99384cb0762d277705f6308086f7cb3868fe17f77cd0
Contents?: true
Size: 992 Bytes
Versions: 1
Compression:
Stored size: 992 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "w3clove/version" Gem::Specification.new do |s| s.name = "w3clove" s.version = W3clove::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Jaime Iniesta"] s.email = ["jaimeiniesta@gmail.com"] s.homepage = "https://github.com/jaimeiniesta/w3clove/" s.summary = %q{ command-line tool to validate the markup of a whole site against the W3C validator } s.description = %q{ this tool allows you to check the markup validation of a whole site passing an XML sitemap, and outputs a detailed report with all errors and warnings } s.rubyforge_project = "w3clove" s.add_dependency 'w3c_validators' s.add_dependency 'nokogiri' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
w3clove-0.0.1 | w3clove.gemspec |