validate-website 0.3 → 0.3.1

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.
Files changed (3) hide show
  1. data/{README → README.rdoc} +8 -4
  2. data/Rakefile +5 -4
  3. metadata +7 -6
@@ -6,13 +6,17 @@
6
6
 
7
7
  == INSTALLATION
8
8
 
9
- gem install validate-website --source http://gemcutter.org
9
+ gem install validate-website
10
10
 
11
11
  == SYNOPSIS
12
12
 
13
13
  validate-website --help
14
- validate-website -s "http://localhost:4567/" -u "Mozilla 5.0" \
15
- -f not-well-formed.txt --auth=user,pass -e 'redirect|news'
14
+ validate-website -s "http://localhost:4567/"
15
+ -u "Mozilla 5.0" \ # user agent
16
+ -f not-well-formed.txt \ # log file
17
+ --auth=user,pass \ # http auth
18
+ -e 'redirect|news' \ # exclude regex
19
+ -n # log not found (404)
16
20
 
17
21
  == REQUIREMENTS:
18
22
 
@@ -28,7 +32,7 @@
28
32
  == LICENSE
29
33
  (The MIT License)
30
34
 
31
- Copyright (c) 2009 spk
35
+ Copyright (c) 2009 Laurent Arnoud (spk)
32
36
 
33
37
  Permission is hereby granted, free of charge, to any person obtaining
34
38
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -7,9 +7,9 @@ require 'find'
7
7
  # Globals
8
8
 
9
9
  PKG_NAME = 'validate-website'
10
- PKG_VERSION = '0.3'
10
+ PKG_VERSION = '0.3.1'
11
11
 
12
- PKG_FILES = ['README', 'Rakefile']
12
+ PKG_FILES = ['README.rdoc', 'Rakefile']
13
13
  Find.find('lib/', 'bin/') do |f|
14
14
  if FileTest.directory?(f) and f =~ /\.svn|\.git/
15
15
  Find.prune
@@ -51,8 +51,9 @@ end
51
51
  require 'rake/gempackagetask'
52
52
 
53
53
  spec = Gem::Specification.new do |s|
54
- s.author = 'spk'
55
- s.email = 'spk@tuxfamily.org'
54
+ s.author = 'Laurent Arnoud'
55
+ s.email = 'laurent@spkdev.net'
56
+ s.homepage = 'http://github.com/spk/validate-website'
56
57
  s.platform = Gem::Platform::RUBY
57
58
  s.summary = 'Web crawler for checking the validity of your documents'
58
59
  s.name = PKG_NAME
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validate-website
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- version: "0.3"
9
+ - 1
10
+ version: 0.3.1
10
11
  platform: ruby
11
12
  authors:
12
- - spk
13
+ - Laurent Arnoud
13
14
  autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
@@ -49,7 +50,7 @@ dependencies:
49
50
  type: :runtime
50
51
  version_requirements: *id002
51
52
  description: Web crawler for checking the validity of your documents
52
- email: spk@tuxfamily.org
53
+ email: laurent@spkdev.net
53
54
  executables:
54
55
  - validate-website
55
56
  extensions: []
@@ -57,7 +58,7 @@ extensions: []
57
58
  extra_rdoc_files: []
58
59
 
59
60
  files:
60
- - README
61
+ - README.rdoc
61
62
  - Rakefile
62
63
  - lib/validator.rb
63
64
  - lib/colorful_messages.rb
@@ -150,7 +151,7 @@ files:
150
151
  - lib/validate_website.rb
151
152
  - bin/validate-website
152
153
  has_rdoc: true
153
- homepage:
154
+ homepage: http://github.com/spk/validate-website
154
155
  licenses: []
155
156
 
156
157
  post_install_message: