Guest User

Untitled

a guest
Jul 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. require 'yaml'
  2.  
  3. module TS
  4.  
  5. def read file
  6. YAML.load_file file
  7. end
  8.  
  9. end
  10.  
  11. x = TS.read "test.cfg"
  12.  
  13.  
  14. #ERROR: TS.rb:12:in `<main>': undefined method `read' for TS:Module (NoMethodError)
Add Comment
Please, Sign In to add comment