yohan 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/yohan.rb +57 -0
  3. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e236d473bebaeba0ac27f3e36d2676cd95e19afe
4
+ data.tar.gz: 7d048238182f9b24093218083e4c9b269149130d
5
+ SHA512:
6
+ metadata.gz: 0c693176c633991ca3abf21f38e3c2a8698f4d24b1d70b1047beff38eea157ffed101362b09885dfd5ea0955f8a41dc917bdfb0aea53d39815b69cbda9c06454
7
+ data.tar.gz: 9e1f55ee371c0d5ab3751513faa827a816670fcee584e6b86c4626575b0eb5cc60611afad339bd7513a7567bf873df78f8e7911d589e71130a353e5043a325db
data/lib/yohan.rb ADDED
@@ -0,0 +1,57 @@
1
+ module Resume
2
+ class ContactsInformation
3
+
4
+ def initialize
5
+ @name = "Yohan Lee"
6
+ @phone_number = "347-522-6583"
7
+ @email = "io.yohanlee@gmail.com"
8
+ @address = "820 Fenimore Rd Larchmont, NY 10538"
9
+ end
10
+
11
+ attr_reader :name, :phone_number, :email, :address
12
+ end
13
+
14
+ class Yohan
15
+
16
+ CONTACTS = ContactsInformation.new
17
+
18
+ def self.education
19
+ (2013..2014).map do |year|
20
+ "Baruch College, #{year}"
21
+ end
22
+ end
23
+
24
+ def self.passion
25
+ loop do
26
+ puts "animated gifs!"
27
+ end
28
+ end
29
+
30
+ def self.skills
31
+ ["Ruby", "Ruby on Rails", "HTML", "CSS", "JavaScript", "Vim"]
32
+ end
33
+
34
+ def self.experience
35
+ {
36
+ startup_institute: ["Web Development Track",
37
+ description: "8 week immersive program for learning technical
38
+ and non-technical skills to thrive in startup environment"]
39
+ }
40
+ end
41
+
42
+ def self.projects
43
+ {
44
+ gifmedat: "built a web app for turning images to and resizing animated gifs",
45
+ krossover_leaderboard: "built a web app of automated leaderboard for sports games analytics company"
46
+ }
47
+ end
48
+
49
+ def self.github
50
+ "https://github.com/ayohan"
51
+ end
52
+
53
+ def self.portfolio
54
+ "https://ayohan.com"
55
+ end
56
+ end
57
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yohan
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Yohan Lee
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-07-18 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email: io.yohanlee@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/yohan.rb
20
+ homepage: http://rubygems.org/gems/yohan
21
+ licenses:
22
+ - MIT
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubyforge_project:
40
+ rubygems_version: 2.4.8
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: rubified resume
44
+ test_files: []
45
+ has_rdoc: