Guest User

Untitled

a guest
Jan 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class ApplicationController < ActionController::Base
  2. include Foobar
  3. end
  4.  
  5. class PagesController < ApplicationController
  6. def home
  7. Foobar::blah
  8. end
  9. end
  10.  
  11. module Foobar
  12. def blah
  13. puts 'hello from module'
  14. end
  15. end
Add Comment
Please, Sign In to add comment