Sha256: 0fcd1ffbf2eb17b228377b4e1656698ef0b9316d3aab44c52c7c6cac46044ac4

Contents?: true

Size: 619 Bytes

Versions: 1

Compression:

Stored size: 619 Bytes

Contents

require 'thor'

module Raounak
  module Resume
    class Cli < Thor
      desc "education master/undergraduate", "Know about my education"
      def education(level = '')
        case level
        when 'master'
          puts 'MSc Distributed Systems Engineering'
          puts 'Technical University of Dresden'
          puts 'class of 2023'
        when 'undergraduate'
          puts 'B.tech in Computer Science and Engineering'
          puts 'Guru Gobind Singh Indraprastha University'
          puts 'class of 2019'
        else
          'Computer science graduate'
        end
      end
    end    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
raounak-resume-0.1.1 lib/raounak/resume/cli.rb