This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Saas/config/engine.rb | |
module Saas | |
class Engine < Rails::Engine | |
engine_name :saas | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Saas/controllers/saas/sessions_controller.rb | |
module Saas | |
class SessionsController < ApplicationController | |
def new | |
render :text => 'Hi from SessionsController' | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'builder' | |
class Sitemap | |
STATIC_URLS = ['/home/about', | |
'/home/help', | |
'/home/contact_us', | |
'/home/terms'] | |
class << self |
NewerOlder