Skip to content

jakehow/multi_app_routing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MultiAppRouting
================

The goal of the MultiAppRouting plugin is to allow easy linking between multiple rails applications on different hosts.

Installation
=======

script/plugin install git://github.com/jakehow/multi_app_routing.git

Example
=======

In routes.rb:

map.application(:billing, :protocol => 'https') do |billing|
  billing.resources :payments
end

In config/applications.yml:

production:
  billing:
    host: billing.yourdomain.com


In your code:

billing.payments_url => https://billing.yourdomain.com/payments


Notes
======

Options must be valid url_for options to do anything. See http://api.rubyonrails.com/classes/ActionController/Base.html#M000267

Options precedence is as follows:

billing.payments_url(:host=>'google.com) (in a view or controller)
overrides:
map.application(:billing, :host=>'yahoo.com') (in routes.rb)
overrides:
production:
  billing:
    host: billing.yourdomain.com
(in applications.yml)
	

Copyright (c) 2007 Jake Howerton, released under the MIT license

About

Easily route between multiple rails applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages