-
Notifications
You must be signed in to change notification settings - Fork 118
/
subdomain-fu.gemspec
27 lines (27 loc) · 1.18 KB
/
subdomain-fu.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
Gem::Specification.new do |s|
s.name = "subdomain-fu"
s.version = "0.0.1"
s.date = "2008-06-13"
s.summary = "Provides a simple solution for route handling and linking between subdomains in a Rails application."
s.email = "michael@intridea.com"
s.homepage = "http://www.actsascommunity.com/projects/subdomain-fu"
s.description = "SubdomainFu aims to solve the problem of subdomain-based routing and in a unified way, establishing simple conventions for linking between subdomains of a Rails app."
s.has_rdoc = true
s.authors = ["Michael Bleigh"]
s.files = [ "MIT-LICENSE",
"README",
"init.rb",
"lib/subdomain_fu",
"lib/subdomain_fu/routing_extensions.rb",
"lib/subdomain_fu/url_rewriter.rb",
"lib/subdomain_fu.rb",
"rails/init.rb",
"spec/debug.log",
"spec/spec_helper.rb",
"spec/subdomain_fu_spec.rb",
"spec/url_rewriter_spec.rb",
"subdomain-fu.gemspec" ]
s.rdoc_options = ["--main", "README"]
#s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
#s.add_dependency("mbleigh-mash", [">= 0.0.5"])
end