Guest User

Untitled

a guest
Nov 23rd, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <Commander::Command::Options t=true, m=true>
  2. if options.include? 't=true' and options.include? 'm=true'
  3. puts 'invalid options'
  4. elsif options.include? "t=true"
  5. puts 'ready to create a team'
  6. elsif options.include? "m=true"
  7. puts 'ready to create a member'
  8. end
Advertisement
Add Comment
Please, Sign In to add comment