public
Description: A new plugin approach to attempting to solve the usage of subdomains in linking and routing in Rails projects.
Homepage: http://rdoc.info/projects/mbleigh/subdomain-fu
Clone URL: git://github.com/mbleigh/subdomain-fu.git
subdomain-fu / subdomain-fu.gemspec
100644 27 lines (26 sloc) 1.175 kb
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.5"
  s.date = "2009-01-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/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