Skip to content

Instantly share code, notes, and snippets.

@glennpjones
Created October 29, 2015 13:36
Show Gist options
  • Save glennpjones/c8fb3abe4d6d957ac178 to your computer and use it in GitHub Desktop.
Save glennpjones/c8fb3abe4d6d957ac178 to your computer and use it in GitHub Desktop.
Rails Routing
class DomainConstraint
def initialize(domain)
@domains = [domain].flatten
end
def matches?(request)
@domains.include? request.domain
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment