-
Notifications
You must be signed in to change notification settings - Fork 5
/
varnisher.gemspec
31 lines (24 loc) · 1.07 KB
/
varnisher.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
$:.push File.expand_path("../lib", __FILE__)
require "varnisher/version"
Gem::Specification.new do |s|
s.name = "varnisher"
s.version = Varnisher::VERSION
s.date = Date.today.strftime("%Y-%m-%d")
s.summary = "Helpful tools for working with Varnish caches"
s.description = "Some tools that make working with the Varnish HTTP cache easier, including things like doing mass purges of entire domains."
s.authors = ["Rob Miller"]
s.email = "[email protected]"
s.homepage = "http://github.com/robmiller/varnisher"
s.license = "MIT"
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md Gemfile)
s.executables = ['varnisher']
s.require_path = 'lib'
s.add_runtime_dependency 'main', '~> 6.0'
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_runtime_dependency 'parallel', '~> 1.3'
s.add_development_dependency 'rake', '~> 10.1.0'
s.add_development_dependency 'minitest', '~> 5.0.6'
s.add_development_dependency 'webmock', '~> 1.13.0'
s.add_development_dependency 'letters', '~> 0.4.1'
s.add_development_dependency 'rubygems-tasks', '~> 0.2.4'
end