-
Notifications
You must be signed in to change notification settings - Fork 8
/
sniffles.gemspec
22 lines (18 loc) · 912 Bytes
/
sniffles.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/sniffles/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ezekiel Templin"]
gem.email = ["[email protected]"]
gem.summary = %q{Detect the platforms and libraries a website is running.}
gem.description = %q{Sniffles helps you detect which popular CMS, analytics, and advertising platforms a website is running.}
gem.homepage = "http://documentup.com/ezkl/sniffles"
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.name = "sniffles"
gem.require_paths = ["lib"]
gem.version = Sniffles::VERSION
gem.add_runtime_dependency("nokogiri", "~> 1.6.1")
gem.add_development_dependency("rspec", "~> 2.9.0")
gem.add_development_dependency("typhoeus", "~> 0.3.3")
gem.add_development_dependency("vcr", "~> 2.8.0")
end