forked from chad/gitjour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitjour.gemspec
35 lines (32 loc) · 1.83 KB
/
gitjour.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
33
34
35
Gem::Specification.new do |s|
s.name = %q{gitjour}
s.version = "6.2.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Chad Fowler", "Rich Kilmer", "Evan Phoenix", "Ben Livingood"]
s.date = %q{2008-06-26}
s.default_executable = %q{gitjour}
s.description = %q{Automates DNSSD-powered serving and cloning of git repositories.}
s.email = %q{[email protected]}
s.executables = ["gitjour"]
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "website/index.txt"]
s.files = ["bin/gitjour", "History.txt", "License.txt", "Manifest.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "lib/gitjour.rb", "lib/gitjour/application.rb", "lib/gitjour/version.rb", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "test/test_gitjour.rb", "test/test_helper.rb", "website/index.html", "website/index.txt", "website/javascripts/rounded_corners_lite.inc.js", "website/stylesheets/screen.css", "website/template.rhtml"]
s.has_rdoc = true
s.homepage = %q{http://gitjour.rubyforge.org}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{gitjour}
s.rubygems_version = %q{1.2.0}
s.summary = %q{Automates DNSSD-powered serving and cloning of git repositories.}
s.test_files = ["test/test_helper.rb", "test/test_gitjour.rb"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if current_version >= 3 then
s.add_runtime_dependency(%q<net-mdns>, [">= 0.4.0"])
else
s.add_dependency(%q<net-mdns>, [">= 0.4.0"])
end
else
s.add_dependency(%q<net-mdns>, [">= 0.4.0"])
end
end