Guest User

Untitled

a guest
Apr 26th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. class Ship < ActiveRecord::Base
  2.  
  3.  
  4. def show_me_cargo
  5. cargo.to_s
  6. end
  7.  
  8. def cargo_is_5
  9. cargo = 5
  10. end
  11.  
  12. def add_cargo c
  13. if c + cargo < max_cargo
  14. cargo = c + cargo
  15. else
  16. return false
  17. end
  18. end
  19.  
  20. end
Add Comment
Please, Sign In to add comment