Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joker1007/template-switcher
Rails template switcher.
https://github.com/joker1007/template-switcher
Last synced: 2 days ago
JSON representation
Rails template switcher.
- Host: GitHub
- URL: https://github.com/joker1007/template-switcher
- Owner: joker1007
- License: mit
- Created: 2012-12-03T12:38:47.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-08T07:27:24.000Z (over 10 years ago)
- Last Synced: 2024-04-15T22:38:45.041Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 180 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# TemplateSwitcher
Rails template switcher.
## Installation
Add this line to your application's Gemfile:
gem 'template-switcher'
And then execute:
$ bundle
Or install it yourself as:
$ gem install template-switcher
## Usage
config/initializer/template\_switcher.rb
```ruby
TemplateSwitcher.mapping = {
"abc.example.domain" => "abc_views",
"xyz.example.domain" => "xyz_views",
}
```app/controllers/posts_controller.rb
```ruby
class PostsController < ApplicationController
include TemplateSwitcher::AutoRenderSwitcherdef index
render "index"
endprivate
def template_selector
request.host
end
end
```If requested host name is "abc.example.domain", rendered "app/abc_views/posts/index.html.haml".
If requested host name is "xyz.example.domain", rendered "app/xyz_views/posts/index.html.haml".
Otherwize, rendered "app/views/posts/index.html.haml".
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request