relevance-tarantula 0.0.1 → 0.0.2
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/lib/relevance/tarantula.rb +4 -4
- data/tarantula.gemspec +2 -2
- data/test/test_helper.rb +1 -1
- metadata +2 -2
data/lib/relevance/tarantula.rb
CHANGED
|
@@ -2,13 +2,13 @@ require 'forwardable'
|
|
|
2
2
|
|
|
3
3
|
TARANTULA_ROOT = File.expand_path(File.join(File.dirname(__FILE__), "../.."))
|
|
4
4
|
|
|
5
|
-
# bringing in xss-shield requires a bunch of other dependencies
|
|
6
|
-
# still not certain about this, if it ruins your world please let me know
|
|
7
5
|
require 'erb'
|
|
8
|
-
gem 'activesupport'
|
|
9
6
|
gem 'actionpack'
|
|
7
|
+
gem 'activesupport'
|
|
10
8
|
require 'active_support'
|
|
11
9
|
require 'action_controller'
|
|
10
|
+
# bringing in xss-shield requires a bunch of other dependencies
|
|
11
|
+
# still not certain about this, if it ruins your world please let me know
|
|
12
12
|
#xss_shield_path = File.join(TARANTULA_ROOT, %w{vendor xss-shield})
|
|
13
13
|
#$: << File.join(xss_shield_path, "lib")
|
|
14
14
|
#require File.join(xss_shield_path, "init")
|
|
@@ -21,7 +21,7 @@ module Relevance; end
|
|
|
21
21
|
module Relevance; module CoreExtensions; end; end
|
|
22
22
|
module Relevance
|
|
23
23
|
module Tarantula
|
|
24
|
-
VERSION = "0.0.
|
|
24
|
+
VERSION = "0.0.2"
|
|
25
25
|
|
|
26
26
|
def tarantula_home
|
|
27
27
|
File.expand_path(File.join(File.dirname(__FILE__), "../.."))
|
data/tarantula.gemspec
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = %q{tarantula}
|
|
3
|
-
s.version = "0.0.
|
|
3
|
+
s.version = "0.0.2"
|
|
4
4
|
|
|
5
5
|
s.required_rubygems_version = Gem::Requirement.new("= 1.2") if s.respond_to? :required_rubygems_version=
|
|
6
6
|
s.authors = ["Relevance"]
|
|
7
|
-
s.date = %q{2008-09-
|
|
7
|
+
s.date = %q{2008-09-09}
|
|
8
8
|
s.description = %q{A big hairy fuzzy spider that crawls your site, wreaking havoc}
|
|
9
9
|
s.email = %q{opensource@thinkrelevance.com}
|
|
10
10
|
s.extra_rdoc_files = ["MIT-LICENSE", "README.rdoc", "lib/relevance/core_extensions/ellipsize.rb", "lib/relevance/core_extensions/file.rb", "lib/relevance/core_extensions/response.rb", "lib/relevance/core_extensions/test_case.rb", "lib/relevance/tarantula/attack.rb", "lib/relevance/tarantula/attack_form_submission.rb", "lib/relevance/tarantula/attack_handler.rb", "lib/relevance/tarantula/crawler.rb", "lib/relevance/tarantula/detail.html.erb", "lib/relevance/tarantula/form.rb", "lib/relevance/tarantula/form_submission.rb", "lib/relevance/tarantula/html_document_handler.rb", "lib/relevance/tarantula/html_report_helper.rb", "lib/relevance/tarantula/html_reporter.rb", "lib/relevance/tarantula/index.html.erb", "lib/relevance/tarantula/invalid_html_handler.rb", "lib/relevance/tarantula/io_reporter.rb", "lib/relevance/tarantula/link.rb", "lib/relevance/tarantula/log_grabber.rb", "lib/relevance/tarantula/rails_integration_proxy.rb", "lib/relevance/tarantula/recording.rb", "lib/relevance/tarantula/response.rb", "lib/relevance/tarantula/result.rb", "lib/relevance/tarantula/test_report.html.erb", "lib/relevance/tarantula/tidy_handler.rb", "lib/relevance/tarantula/transform.rb", "lib/relevance/tarantula.rb", "vendor/xss-shield/MIT-LICENSE"]
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: relevance-tarantula
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Relevance
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-09-
|
|
12
|
+
date: 2008-09-09 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|