Guest User

Untitled

a guest
Jun 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. #!/usr/bin/ruby
  2. #Author: Gregory Jason Draper
  3. #Purpose: To obtain a position that would allow me to further
  4. # my knowledge and skills in the world of web based services and technology.
  5. # To work with Ruby on Rails and other web development platforms
  6. # to enhance user experience and the maturity of websites and web applications.
  7. class Education
  8. attr_accessor :school, :degree, :concentration, :graduation_year
  9. def initialize(school, degree, concentration, graduation_year)
  10. @school, @degree, @concentration, @graduation_year = school, degree, concentration, graduation_year
  11. end
  12. end
  13. School.new("Radford University",
  14. "Bachelor of Information Science & Technology",
  15. "Concentration in Web Development",
  16. "2008")
  17. class Job
  18. attr_accessor :title, :business_name, :location, :start_date, :end_date, :duties
  19. def initialize(title, business_name, location, start_date, end_date)
  20. @title, @business_name, @location, @start_date, @end_date, @description = title, business_name, location, start_date, end_date, description
  21. end
  22. end
  23. Job.new(:title=>"Hardware/Software Technician",
  24. :business_name=>"Henry County Public Schools",
  25. :location =>"Collinsville, VA 24078",
  26. :start_date =>"January 2003",
  27. :end_date => "Current",
  28. :dutes=>['Provide hardware and software support for a variety of applications and hardware configurations',
  29. 'Provide network support including wiring, router support and desktop support',
  30. 'Assist and train teachers and faculty in implementation and usage of technology',
  31. 'Supported over 2000 users and more than 600 computers'])
Add Comment
Please, Sign In to add comment