Sha256: 7d808206c933476e1e73e166d5f85a3db0cc36ae86633caebf9c9edecdfda2d8

Contents?: true

Size: 749 Bytes

Versions: 1

Compression:

Stored size: 749 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

      desc "workEx", "It will tell you about my work exp"
      def workEx
        puts "Working with Ruby since 2017"
      end
    end    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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