-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcrawler_detect.gemspec
More file actions
38 lines (30 loc) · 1.46 KB
/
crawler_detect.gemspec
File metadata and controls
38 lines (30 loc) · 1.46 KB
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
32
33
34
35
36
37
38
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "crawler_detect/version"
Gem::Specification.new do |spec|
spec.name = "crawler_detect"
spec.version = CrawlerDetect::VERSION
spec.authors = ["Pavel Kozlov"]
spec.email = ["loadkpi@gmail.com"]
spec.summary = "CrawlerDetect: detect bots/crawlers"
spec.description = "CrawlerDetect is a library to detect bots/crawlers via the user agent"
spec.homepage = "https://github.com/loadkpi/crawler_detect"
spec.license = "MIT"
spec.files = Dir["lib/**/*", "LICENSE.txt", "README.md"].select { |file| File.file?(file) }
spec.require_paths = ["lib"]
spec.add_dependency "qonfig", ">= 0.24"
spec.add_development_dependency "activesupport", ">= 6.0"
spec.add_development_dependency "fuubar", ">= 2.5"
spec.add_development_dependency "rack-test", ">= 2.1"
spec.add_development_dependency "rake", ">= 13.1"
spec.add_development_dependency "rspec", ">= 3.13"
spec.add_development_dependency "armitage-rubocop", ">= 0.82"
spec.add_development_dependency "appraisal", ">= 2.5"
spec.required_ruby_version = ">= 2.5.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/loadkpi/crawler_detect/issues",
"source_code_uri" => "https://github.com/loadkpi/crawler_detect",
"changelog_uri" => "https://github.com/loadkpi/crawler_detect/blob/master/CHANGELOG.md"
}
end