-
Notifications
You must be signed in to change notification settings - Fork 5
/
crawl.gemspec
22 lines (20 loc) · 1.01 KB
/
crawl.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/crawl/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Tor Erik Linnerud", "John Bohn", "Jake Faris"]
gem.email = ["tor@alphasights.com", "jjbohn@gmail.com", "jakefaris@outlook.com"]
gem.description = "Crawl all pages on a domain, checking for errors"
gem.summary = "Crawl pages witin a domain, reporting any page that returns a bad response code"
gem.homepage = "http://github.com/alphasights/crawl"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "crawl"
gem.require_paths = ["lib"]
gem.version = Crawl::VERSION
gem.licenses = ['MIT']
gem.add_dependency('nokogiri', '~> 1')
gem.add_dependency('rest-client', '~> 1')
gem.add_dependency('eventmachine', '~> 1')
gem.add_dependency('em-http-request', '~> 1')
end