wsoc 0.1.2 → 0.1.3

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.
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ doc
2
+ pkg
3
+ tmp/*
4
+ .yardoc
5
+ .bundle
6
+ .DS_Store
7
+ *.db
8
+ *.log
9
+ *.swp
10
+ *~
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ --markup markdown --title 'Web Spider Obstacle Course (WSOC) Documentation' --protected --files ChangeLog.md,COPYING.txt
@@ -1,20 +1,30 @@
1
- === 0.1.2 / 2010-01-10
1
+ ### 0.1.3 / 2010-07-02
2
+
3
+ * Migrated off of Hoe and to Jeweler.
4
+ * Manage all development dependencies with Bundler.
5
+ * Removed the dependencey on nokogiri.
6
+ * Upgraded from json to json_pure ~> 1.4.0.
7
+ * Upgraded to sinatra ~> 1.0.
8
+ * Switched to markdown formatted YARD documentation.
9
+ * Added a meta-refresh/redirect obstacle to the course (thanks zapnap).
10
+
11
+ ### 0.1.2 / 2010-01-10
2
12
 
3
13
  * Emergency fix for a typo that only effected Ruby 1.9.1.
4
14
 
5
- === 0.1.1 / 2010-01-06
15
+ ### 0.1.1 / 2010-01-06
6
16
 
7
17
  * Added WSOC::Specs.metadata.
8
18
  * Added WSOC::Specs.config.
9
19
  * Added {WSOC::Helpers::Authentication}.
10
- * Added a failing link to <tt>/course/remote/start.html</tt> with a bad TLD.
11
- * Added a failing link to <tt>/course/remote/start.html</tt> with the bad
20
+ * Added a failing link to `/course/remote/start.html` with a bad TLD.
21
+ * Added a failing link to `/course/remote/start.html` with the bad
12
22
  IP address +191.255.0.0+.
13
- * Added <tt>/course/auth</tt> for testing spidering of HTTP Basic
23
+ * Added `/course/auth` for testing spidering of HTTP Basic
14
24
  Auth protected pages.
15
25
  * Added auth store information to the metadata within the specs.
16
26
 
17
- === 0.1.0 / 2010-01-02
27
+ ### 0.1.0 / 2010-01-02
18
28
 
19
29
  * Initial release:
20
30
  * Written as a Sinatra application.
@@ -26,7 +36,7 @@
26
36
  * Links with relative-paths.
27
37
  * Links with absolute-paths.
28
38
  * Remote links.
29
- * <tt>javascript:</tt> links.
39
+ * `javascript:` links.
30
40
  * Links within +frameset+ and +iframe+ tags.
31
41
  * HTTP 300, 301, 302, 303 and 307 Redirects.
32
42
 
data/Gemfile ADDED
@@ -0,0 +1,22 @@
1
+ source 'https://rubygems.org'
2
+
3
+ group(:runtime) do
4
+ gem 'json_pure', '~> 1.4.0'
5
+ gem 'sinatra', '~> 1.0'
6
+ end
7
+
8
+ group(:development) do
9
+ gem 'rake', '~> 0.8.7'
10
+ gem 'jeweler', '~> 1.4.0', :git => 'git://github.com/technicalpickles/jeweler.git'
11
+ end
12
+
13
+ group(:doc) do
14
+ case RUBY_PLATFORM
15
+ when 'java'
16
+ gem 'maruku', '~> 0.6.0'
17
+ else
18
+ gem 'rdiscount', '~> 1.6.3'
19
+ end
20
+
21
+ gem 'yard', '~> 0.5.3'
22
+ end
@@ -1,15 +1,15 @@
1
- = Web Spider Obstacle Course (WSOC)
1
+ # Web Spider Obstacle Course (WSOC)
2
2
 
3
- * http://github.com/postmodern/wsoc
4
- * http://github.com/postmodern/wsoc/issues
3
+ * [github.com/postmodern/wsoc](http://github.com/postmodern/wsoc/)
4
+ * [github.com/postmodern/wsoc/issues](http://github.com/postmodern/wsoc/issues)
5
5
  * Postmodern (postmodern.mod3 at gmail.com)
6
6
 
7
- == DESCRIPTION:
7
+ ## Description
8
8
 
9
9
  The Web Spider Obstacle Course (WSOC) is an example web server that tests
10
10
  the thoroughness and resilience of Web Spiders.
11
11
 
12
- == FEATURES:
12
+ ## Features
13
13
 
14
14
  * Written as a Sinatra application.
15
15
  * Provides Specs for the expected behavior of a web spider for every link in
@@ -24,22 +24,23 @@ the thoroughness and resilience of Web Spiders.
24
24
  * Links within +frameset+ and +iframe+ tags.
25
25
  * Cookie protected pages.
26
26
  * HTTP 300, 301, 302, 303 and 307 Redirects.
27
+ * Meta-Refresh Redirects.
27
28
  * HTTP Baisc Auth protected pages.
28
29
 
29
- == SYNOPSIS:
30
+ ## Synopsis
30
31
 
31
- $ wsoc_server -p 8080
32
+ $ wsoc_server -p 8080
32
33
 
33
- == REQUIREMENTS:
34
+ ## Requirements
34
35
 
35
- * {sinatra}[http://sinatrarb.com] >= 0.9.4
36
- * {json}[http://json.rubyforge.org] >= 1.2.0
36
+ * [json_pure](http://flori.github.com/json/) ~> 1.4.0
37
+ * [sinatra](http://sinatrarb.com) ~> 1.0
37
38
 
38
- == INSTALL:
39
+ ## Install
39
40
 
40
- $ sudo gem install wsoc
41
+ $ sudo gem install wsoc
41
42
 
42
- == LICENSE:
43
+ ## License
43
44
 
44
45
  WSOC - The Web Spider Obstacle Course
45
46
 
data/Rakefile CHANGED
@@ -1,21 +1,29 @@
1
- # -*- ruby -*-
2
-
3
1
  require 'rubygems'
4
- require 'hoe'
5
- require 'hoe/signing'
6
-
7
- Hoe.plugin :yard
2
+ require 'bundler'
8
3
 
9
- Hoe.spec('wsoc') do
10
- self.developer('Postmodern', 'postmodern.mod3@gmail.com')
4
+ begin
5
+ Bundler.setup(:development, :doc)
6
+ rescue Bundler::BundlerError => e
7
+ STDERR.puts e.message
8
+ STDERR.puts "Run `bundle install` to install missing gems"
9
+ exit e.status_code
10
+ end
11
11
 
12
- self.yard_opts += ['--protected']
13
- self.remote_yard_dir = '/'
12
+ require 'rake'
13
+ require 'jeweler'
14
+ require './lib/wsoc/version.rb'
14
15
 
15
- self.extra_deps += [
16
- ['json', '>=1.2.0'],
17
- ['sinatra', '>=0.9.4']
18
- ]
16
+ Jeweler::Tasks.new do |gem|
17
+ gem.name = 'wsoc'
18
+ gem.version = WSOC::VERSION
19
+ gem.license = 'GPL-2'
20
+ gem.summary = %Q{An example web server that tests the thoroughness and resilience of Web Spiders}
21
+ gem.description = %Q{The Web Spider Obstacle Course (WSOC) is an example web server that tests the thoroughness and resilience of Web Spiders.}
22
+ gem.email = 'postmodern.mod3@gmail.com'
23
+ gem.homepage = 'http://github.com/postmodern/wsoc'
24
+ gem.authors = ['Postmodern']
25
+ gem.has_rdoc = 'yard'
19
26
  end
20
27
 
21
- # vim: syntax=ruby
28
+ require 'yard'
29
+ YARD::Rake::YardocTask.new
data/lib/wsoc/app.rb CHANGED
@@ -25,7 +25,6 @@ require 'wsoc/version'
25
25
 
26
26
  require 'rubygems'
27
27
  require 'sinatra'
28
- require 'nokogiri'
29
28
 
30
29
  module WSOC
31
30
  class App < Sinatra::Base
@@ -113,6 +112,12 @@ module WSOC
113
112
 
114
113
  course_pass '/course/redirects/307/pass.html'
115
114
 
115
+ get '/course/redirects/meta.html' do
116
+ course_page :course_redirects_meta
117
+ end
118
+
119
+ course_pass '/course/redirects/meta/pass.html'
120
+
116
121
  get '/course/cookies/start.html' do
117
122
  response.set_cookie 'auth_level', '1'
118
123
 
@@ -125,6 +125,10 @@ module WSOC
125
125
  'should visit the 307 HTTP redirect test page'
126
126
  should_visit '/course/redirects/307/pass.html',
127
127
  'should follow HTTP 307 redirects'
128
+ should_visit '/course/redirects/meta.html',
129
+ 'should visit the meta refresh redirect test page'
130
+ should_visit '/course/redirects/meta/pass.html',
131
+ 'should follow meta refresh (soft) redirects'
128
132
 
129
133
  config :auth_store, {
130
134
  '/course/auth/' => {
data/lib/wsoc/version.rb CHANGED
@@ -20,5 +20,5 @@
20
20
 
21
21
  module WSOC
22
22
  # wsoc version
23
- VERSION = '0.1.2'
23
+ VERSION = '0.1.3'
24
24
  end
@@ -0,0 +1,8 @@
1
+ <html>
2
+ <head>
3
+ <meta http-equiv="refresh" content="2; url=/course/redirects/meta/pass.html">
4
+ </head>
5
+ <body>
6
+ Redirecting...
7
+ </body>
8
+ </html>
@@ -12,6 +12,7 @@
12
12
  <li><a href="302.html">HTTP 302 Redirect</a></li>
13
13
  <li><a href="303.html">HTTP 303 Redirect</a></li>
14
14
  <li><a href="307.html">HTTP 307 Redirect</a></li>
15
+ <li><a href="meta.html">Meta Refresh "Soft" Redirect</a></li>
15
16
  </ul>
16
17
  </body>
17
18
  </html>
data/wsoc.gemspec ADDED
@@ -0,0 +1,99 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{wsoc}
8
+ s.version = "0.1.3"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Postmodern"]
12
+ s.date = %q{2010-07-02}
13
+ s.default_executable = %q{wsoc_server}
14
+ s.description = %q{The Web Spider Obstacle Course (WSOC) is an example web server that tests the thoroughness and resilience of Web Spiders.}
15
+ s.email = %q{postmodern.mod3@gmail.com}
16
+ s.executables = ["wsoc_server"]
17
+ s.extra_rdoc_files = [
18
+ "ChangeLog.md",
19
+ "README.md"
20
+ ]
21
+ s.files = [
22
+ ".gitignore",
23
+ ".yardopts",
24
+ "COPYING.txt",
25
+ "ChangeLog.md",
26
+ "Gemfile",
27
+ "README.md",
28
+ "Rakefile",
29
+ "bin/wsoc_server",
30
+ "config.ru",
31
+ "lib/wsoc.rb",
32
+ "lib/wsoc/app.rb",
33
+ "lib/wsoc/config.rb",
34
+ "lib/wsoc/course.rb",
35
+ "lib/wsoc/course_specs.rb",
36
+ "lib/wsoc/helpers.rb",
37
+ "lib/wsoc/helpers/authentication.rb",
38
+ "lib/wsoc/helpers/course.rb",
39
+ "lib/wsoc/helpers/rendering.rb",
40
+ "lib/wsoc/runner.rb",
41
+ "lib/wsoc/specs.rb",
42
+ "lib/wsoc/version.rb",
43
+ "public/css/layout.css",
44
+ "public/css/specs.css",
45
+ "public/js/jquery-1.3.2.min.js",
46
+ "views/course_absolute_start.erb",
47
+ "views/course_auth_start.erb",
48
+ "views/course_cookies_get.erb",
49
+ "views/course_cookies_start.erb",
50
+ "views/course_empty_start.erb",
51
+ "views/course_fail.erb",
52
+ "views/course_frames_frame.erb",
53
+ "views/course_frames_iframe.erb",
54
+ "views/course_frames_start.erb",
55
+ "views/course_javascript_start.erb",
56
+ "views/course_loop_next.erb",
57
+ "views/course_loop_start.erb",
58
+ "views/course_pass.erb",
59
+ "views/course_redirects_meta.erb",
60
+ "views/course_redirects_start.erb",
61
+ "views/course_relative_start.erb",
62
+ "views/course_remote_next.erb",
63
+ "views/course_remote_start.erb",
64
+ "views/course_start.erb",
65
+ "views/layout.erb",
66
+ "views/specs.erb",
67
+ "views/welcome.erb",
68
+ "wsoc.gemspec"
69
+ ]
70
+ s.has_rdoc = %q{yard}
71
+ s.homepage = %q{http://github.com/postmodern/wsoc}
72
+ s.licenses = ["GPL-2"]
73
+ s.require_paths = ["lib"]
74
+ s.rubygems_version = %q{1.3.7}
75
+ s.summary = %q{An example web server that tests the thoroughness and resilience of Web Spiders}
76
+
77
+ if s.respond_to? :specification_version then
78
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
79
+ s.specification_version = 3
80
+
81
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
82
+ s.add_runtime_dependency(%q<json_pure>, ["~> 1.4.0"])
83
+ s.add_runtime_dependency(%q<sinatra>, ["~> 1.0"])
84
+ s.add_development_dependency(%q<rake>, ["~> 0.8.7"])
85
+ s.add_development_dependency(%q<jeweler>, ["~> 1.4.0"])
86
+ else
87
+ s.add_dependency(%q<json_pure>, ["~> 1.4.0"])
88
+ s.add_dependency(%q<sinatra>, ["~> 1.0"])
89
+ s.add_dependency(%q<rake>, ["~> 0.8.7"])
90
+ s.add_dependency(%q<jeweler>, ["~> 1.4.0"])
91
+ end
92
+ else
93
+ s.add_dependency(%q<json_pure>, ["~> 1.4.0"])
94
+ s.add_dependency(%q<sinatra>, ["~> 1.0"])
95
+ s.add_dependency(%q<rake>, ["~> 0.8.7"])
96
+ s.add_dependency(%q<jeweler>, ["~> 1.4.0"])
97
+ end
98
+ end
99
+
metadata CHANGED
@@ -1,195 +1,170 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wsoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 3
9
+ version: 0.1.3
5
10
  platform: ruby
6
11
  authors:
7
12
  - Postmodern
8
13
  autorequire:
9
14
  bindir: bin
10
- cert_chain:
11
- - |
12
- -----BEGIN CERTIFICATE-----
13
- MIIDQDCCAiigAwIBAgIBADANBgkqhkiG9w0BAQUFADBGMRgwFgYDVQQDDA9wb3N0
14
- bW9kZXJuLm1vZDMxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixk
15
- ARkWA2NvbTAeFw0wOTA2MDMwNDU5MDNaFw0xMDA2MDMwNDU5MDNaMEYxGDAWBgNV
16
- BAMMD3Bvc3Rtb2Rlcm4ubW9kMzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYK
17
- CZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
18
- 1wvANkTDHFgVih5XLjuTwTZjgBq1lBGybXJiH6Id1lY2JOMqM5FB1DDHVvvij94i
19
- mJabN0zkzu6VKWC70y0IwOxY7CPokr0eFdK/D0y7mCq1P8QITv76i2YqAl0eYqIt
20
- W+IhIkANQ7E6uMZIZcdnfadC6lPAtlKkqtd9crvRbFgr6e3kyflmohbRnTEJHoRd
21
- 7SHHsybE6DSn7oTDs6XBTNrNIn5VfZA0z01eeos/+zBm1zKJOK2+/7xtLLDuDU9G
22
- +Rd+ltUBbvxUrMNZmDG29pnmN2xTRH+Q8HxD2AxlvM5SRpK6OeZaHV7PaCCAVZ4L
23
- T9BFl1sfMvRlABeGEkSyuQIDAQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIE
24
- sDAdBgNVHQ4EFgQUKwsd+PqEYmBvyaTyoL+uRuk+PhEwDQYJKoZIhvcNAQEFBQAD
25
- ggEBAB4TvHsrlbcXcKg6gX5BIb9tI+zGkpzo0Z7jnxMEcNO7NGGwmzafDBI/xZYv
26
- xkRH3/HXbGGYDOi6Q6gWt5GujSx0bOImDtYTJTH8jnzN92HzEK5WdScm1QpZKF1e
27
- cezArMbxbSPaosxTCtG6LQTkE28lFQsmFZ5xzouugS4h5+LVJiVMmiP+l3EfkjFa
28
- GOURU+rNEMPWo8MCWivGW7jes6BMzWHcW7DQ0scNVmIcCIgdyMmpscuAEOSeghy9
29
- /fFs57Ey2OXBL55nDOyvN/ZQ2Vab05UH4t+GCxjAPeirzL/29FBtePT6VD44c38j
30
- pDj+ws7QjtH/Qcrr1l9jfN0ehDs=
31
- -----END CERTIFICATE-----
15
+ cert_chain: []
32
16
 
33
- date: 2010-01-10 00:00:00 -08:00
34
- default_executable:
17
+ date: 2010-07-02 00:00:00 -07:00
18
+ default_executable: wsoc_server
35
19
  dependencies:
36
20
  - !ruby/object:Gem::Dependency
37
- name: json
38
- type: :runtime
39
- version_requirement:
40
- version_requirements: !ruby/object:Gem::Requirement
21
+ name: json_pure
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
41
24
  requirements:
42
- - - ">="
25
+ - - ~>
43
26
  - !ruby/object:Gem::Version
44
- version: 1.2.0
45
- version:
27
+ segments:
28
+ - 1
29
+ - 4
30
+ - 0
31
+ version: 1.4.0
32
+ type: :runtime
33
+ prerelease: false
34
+ version_requirements: *id001
46
35
  - !ruby/object:Gem::Dependency
47
36
  name: sinatra
48
- type: :runtime
49
- version_requirement:
50
- version_requirements: !ruby/object:Gem::Requirement
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
51
39
  requirements:
52
- - - ">="
40
+ - - ~>
53
41
  - !ruby/object:Gem::Version
54
- version: 0.9.4
55
- version:
42
+ segments:
43
+ - 1
44
+ - 0
45
+ version: "1.0"
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: *id002
56
49
  - !ruby/object:Gem::Dependency
57
- name: rubyforge
58
- type: :development
59
- version_requirement:
60
- version_requirements: !ruby/object:Gem::Requirement
50
+ name: rake
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ none: false
61
53
  requirements:
62
- - - ">="
54
+ - - ~>
63
55
  - !ruby/object:Gem::Version
64
- version: 2.0.3
65
- version:
66
- - !ruby/object:Gem::Dependency
67
- name: gemcutter
56
+ segments:
57
+ - 0
58
+ - 8
59
+ - 7
60
+ version: 0.8.7
68
61
  type: :development
69
- version_requirement:
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - ">="
73
- - !ruby/object:Gem::Version
74
- version: 0.3.0
75
- version:
62
+ prerelease: false
63
+ version_requirements: *id003
76
64
  - !ruby/object:Gem::Dependency
77
- name: yard
78
- type: :development
79
- version_requirement:
80
- version_requirements: !ruby/object:Gem::Requirement
65
+ name: jeweler
66
+ requirement: &id004 !ruby/object:Gem::Requirement
67
+ none: false
81
68
  requirements:
82
- - - ">="
69
+ - - ~>
83
70
  - !ruby/object:Gem::Version
84
- version: 0.5.2
85
- version:
86
- - !ruby/object:Gem::Dependency
87
- name: hoe-yard
71
+ segments:
72
+ - 1
73
+ - 4
74
+ - 0
75
+ version: 1.4.0
88
76
  type: :development
89
- version_requirement:
90
- version_requirements: !ruby/object:Gem::Requirement
91
- requirements:
92
- - - ">="
93
- - !ruby/object:Gem::Version
94
- version: 0.1.1
95
- version:
96
- - !ruby/object:Gem::Dependency
97
- name: hoe
98
- type: :development
99
- version_requirement:
100
- version_requirements: !ruby/object:Gem::Requirement
101
- requirements:
102
- - - ">="
103
- - !ruby/object:Gem::Version
104
- version: 2.5.0
105
- version:
106
- description: |-
107
- The Web Spider Obstacle Course (WSOC) is an example web server that tests
108
- the thoroughness and resilience of Web Spiders.
109
- email:
110
- - postmodern.mod3@gmail.com
77
+ prerelease: false
78
+ version_requirements: *id004
79
+ description: The Web Spider Obstacle Course (WSOC) is an example web server that tests the thoroughness and resilience of Web Spiders.
80
+ email: postmodern.mod3@gmail.com
111
81
  executables:
112
82
  - wsoc_server
113
83
  extensions: []
114
84
 
115
85
  extra_rdoc_files:
116
- - COPYING.txt
117
- - Manifest.txt
118
- - History.rdoc
86
+ - ChangeLog.md
87
+ - README.md
119
88
  files:
89
+ - .gitignore
90
+ - .yardopts
120
91
  - COPYING.txt
121
- - History.rdoc
122
- - Manifest.txt
123
- - README.rdoc
92
+ - ChangeLog.md
93
+ - Gemfile
94
+ - README.md
124
95
  - Rakefile
125
- - config.ru
126
96
  - bin/wsoc_server
97
+ - config.ru
127
98
  - lib/wsoc.rb
99
+ - lib/wsoc/app.rb
128
100
  - lib/wsoc/config.rb
129
- - lib/wsoc/specs.rb
101
+ - lib/wsoc/course.rb
130
102
  - lib/wsoc/course_specs.rb
131
103
  - lib/wsoc/helpers.rb
132
- - lib/wsoc/helpers/rendering.rb
133
104
  - lib/wsoc/helpers/authentication.rb
134
105
  - lib/wsoc/helpers/course.rb
135
- - lib/wsoc/course.rb
136
- - lib/wsoc/app.rb
106
+ - lib/wsoc/helpers/rendering.rb
137
107
  - lib/wsoc/runner.rb
108
+ - lib/wsoc/specs.rb
138
109
  - lib/wsoc/version.rb
139
110
  - public/css/layout.css
140
111
  - public/css/specs.css
141
112
  - public/js/jquery-1.3.2.min.js
142
- - views/layout.erb
143
- - views/specs.erb
144
- - views/course_pass.erb
145
- - views/course_fail.erb
146
- - views/course_start.erb
147
- - views/course_relative_start.erb
148
113
  - views/course_absolute_start.erb
114
+ - views/course_auth_start.erb
115
+ - views/course_cookies_get.erb
116
+ - views/course_cookies_start.erb
149
117
  - views/course_empty_start.erb
150
- - views/course_javascript_start.erb
151
- - views/course_frames_start.erb
118
+ - views/course_fail.erb
152
119
  - views/course_frames_frame.erb
153
120
  - views/course_frames_iframe.erb
154
- - views/course_loop_start.erb
121
+ - views/course_frames_start.erb
122
+ - views/course_javascript_start.erb
155
123
  - views/course_loop_next.erb
156
- - views/course_remote_start.erb
157
- - views/course_remote_next.erb
158
- - views/course_cookies_start.erb
159
- - views/course_cookies_get.erb
124
+ - views/course_loop_start.erb
125
+ - views/course_pass.erb
126
+ - views/course_redirects_meta.erb
160
127
  - views/course_redirects_start.erb
161
- - views/course_auth_start.erb
128
+ - views/course_relative_start.erb
129
+ - views/course_remote_next.erb
130
+ - views/course_remote_start.erb
131
+ - views/course_start.erb
132
+ - views/layout.erb
133
+ - views/specs.erb
162
134
  - views/welcome.erb
135
+ - wsoc.gemspec
163
136
  has_rdoc: yard
164
137
  homepage: http://github.com/postmodern/wsoc
165
- licenses: []
166
-
138
+ licenses:
139
+ - GPL-2
167
140
  post_install_message:
168
- rdoc_options:
169
- - --protected
170
- - --title
171
- - Wsoc Documentation
172
- - --quiet
141
+ rdoc_options: []
142
+
173
143
  require_paths:
174
144
  - lib
175
145
  required_ruby_version: !ruby/object:Gem::Requirement
146
+ none: false
176
147
  requirements:
177
148
  - - ">="
178
149
  - !ruby/object:Gem::Version
150
+ hash: -852470147
151
+ segments:
152
+ - 0
179
153
  version: "0"
180
- version:
181
154
  required_rubygems_version: !ruby/object:Gem::Requirement
155
+ none: false
182
156
  requirements:
183
157
  - - ">="
184
158
  - !ruby/object:Gem::Version
159
+ segments:
160
+ - 0
185
161
  version: "0"
186
- version:
187
162
  requirements: []
188
163
 
189
- rubyforge_project: wsoc
190
- rubygems_version: 1.3.5
164
+ rubyforge_project:
165
+ rubygems_version: 1.3.7
191
166
  signing_key:
192
167
  specification_version: 3
193
- summary: The Web Spider Obstacle Course (WSOC) is an example web server that tests the thoroughness and resilience of Web Spiders.
168
+ summary: An example web server that tests the thoroughness and resilience of Web Spiders
194
169
  test_files: []
195
170
 
data.tar.gz.sig DELETED
Binary file
data/Manifest.txt DELETED
@@ -1,43 +0,0 @@
1
- COPYING.txt
2
- History.rdoc
3
- Manifest.txt
4
- README.rdoc
5
- Rakefile
6
- config.ru
7
- bin/wsoc_server
8
- lib/wsoc.rb
9
- lib/wsoc/config.rb
10
- lib/wsoc/specs.rb
11
- lib/wsoc/course_specs.rb
12
- lib/wsoc/helpers.rb
13
- lib/wsoc/helpers/rendering.rb
14
- lib/wsoc/helpers/authentication.rb
15
- lib/wsoc/helpers/course.rb
16
- lib/wsoc/course.rb
17
- lib/wsoc/app.rb
18
- lib/wsoc/runner.rb
19
- lib/wsoc/version.rb
20
- public/css/layout.css
21
- public/css/specs.css
22
- public/js/jquery-1.3.2.min.js
23
- views/layout.erb
24
- views/specs.erb
25
- views/course_pass.erb
26
- views/course_fail.erb
27
- views/course_start.erb
28
- views/course_relative_start.erb
29
- views/course_absolute_start.erb
30
- views/course_empty_start.erb
31
- views/course_javascript_start.erb
32
- views/course_frames_start.erb
33
- views/course_frames_frame.erb
34
- views/course_frames_iframe.erb
35
- views/course_loop_start.erb
36
- views/course_loop_next.erb
37
- views/course_remote_start.erb
38
- views/course_remote_next.erb
39
- views/course_cookies_start.erb
40
- views/course_cookies_get.erb
41
- views/course_redirects_start.erb
42
- views/course_auth_start.erb
43
- views/welcome.erb
metadata.gz.sig DELETED
Binary file