Guest User

Untitled

a guest
May 25th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ## Including custom helpers in all your application
  2.  
  3.  
  4. class ApplicationController < ActionController::Base
  5. helper :javascript
  6. end
  7.  
  8. ## app/helpers/javascript_helper.rb
  9. module JavascriptHelper
  10. def banana
  11. return "cake"
  12. end
  13. end
Add Comment
Please, Sign In to add comment