Class: Adetunji::Resume::Cli
- Inherits:
-
Thor
- Object
- Thor
- Adetunji::Resume::Cli
- Defined in:
- lib/adetunji/resume/cli.rb
Instance Method Summary collapse
Instance Method Details
#education(level = '') ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/adetunji/resume/cli.rb', line 8 def education(level = '') case level when 'master' puts 'MSc Cybersecurity' puts 'Saarland University' puts 'Class of 2025' when 'undergraduate' puts 'Bsc Computer Science' puts 'Houdegbe North American University' puts 'Class of 2014' else 'Computer science graduate' end end |
#experience ⇒ Object
25 26 27 |
# File 'lib/adetunji/resume/cli.rb', line 25 def experience() puts 'I have been working with ruby now for 2 months' end |