Sha256: 2957e51cb8344b1cbe29fe9c13522cb69512f1bac40436d407cf46ae822db160
Contents?: true
Size: 1.06 KB
Versions: 7
Compression:
Stored size: 1.06 KB
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', '1.0.2' s.add_dependency 'nokogiri' s.add_development_dependency 'rspec' s.add_development_dependency 'mocha' 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
7 entries across 7 versions & 1 rubygems