-
Notifications
You must be signed in to change notification settings - Fork 3
/
hostess.gemspec
32 lines (28 loc) · 1.06 KB
/
hostess.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
32
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "hostess"
s.version = "0.1.8"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Chris Roos, James Adam"]
s.date = "2012-10-27"
s.email = "[email protected]"
s.executables = ["hostess"]
s.extra_rdoc_files = ["README.md"]
s.files = ["README.md", "Rakefile", "bin/hostess", "lib/hostess", "lib/hostess/options.rb", "lib/hostess/virtual_host.rb", "lib/hostess.rb"]
s.homepage = "http://chrisroos.co.uk"
s.rdoc_options = ["--main", "README.md"]
s.require_paths = ["bin", "lib"]
s.rubyforge_project = "hostess"
s.rubygems_version = "1.8.23"
s.summary = "Manage simple apache virtual hosts"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<mocha>, [">= 0"])
else
s.add_dependency(%q<mocha>, [">= 0"])
end
else
s.add_dependency(%q<mocha>, [">= 0"])
end
end