forked from relevance/tarantula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tarantula.gemspec
31 lines (26 loc) · 1.21 KB
/
tarantula.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "relevance/tarantula/version"
Gem::Specification.new do |s|
s.name = "tarantula"
s.version = Relevance::Tarantula::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Relevance, Inc."]
s.email = ["[email protected]"]
s.homepage = "https://github.com/relevance/tarantula"
s.summary = %q{A big hairy fuzzy spider that crawls your site, wreaking havoc}
s.description = %q{A big hairy fuzzy spider that crawls your site, wreaking havoc}
s.rubyforge_project = "tarantula"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {examples,template}`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency "htmlentities", "~> 4.3.0"
s.add_runtime_dependency "hpricot", "~> 0.8.4"
s.add_development_dependency "rspec", "~> 2.6.0"
s.add_development_dependency "sdoc", "~> 0.3.0"
s.add_development_dependency "sdoc-helpers", "~> 0.1.4"
s.add_development_dependency "rdiscount", "~> 1.6.8"
s.add_development_dependency "log_buddy", "~> 0.6.0"
s.add_development_dependency "mocha", "~> 0.9.12"
s.add_development_dependency "rails", "~> 3.0.9"
end