This repository has been archived by the owner on Jun 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathauthors.rb
74 lines (74 loc) · 2.28 KB
/
authors.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@authors = {
jorge_bejar: {
name: 'Jorge Bejar',
email: 'jorge@wyeworks.com ',
twitter_handle: 'jmbejar',
github_handle: 'jmbejar',
image: 'jorge-bejar.jpg',
description: 'Software Engineer, Rubist, Certified Scrum Master. Working at @wyeworks'
},
jose_ignacio_costa: {
name: 'José Costa',
email: 'jose@wyeworks.com',
twitter_handle: 'joseicosta',
github_handle: 'joseicosta',
image: 'jose-ignacio-costa.jpg',
description: 'Cofounder & CEO at WyeWorks. Fitness aficionado. Home Barista wannabe.'
},
mario_saul: {
name: 'Mario Saul',
email: 'mario@wyeworks.com',
twitter_handle: 'mario_saul',
github_handle: 'mariiio',
image: 'mario-saul.jpg',
description: 'Software developer at WyeWorks.'
},
rodrigo_ponce_de_leon: {
name: 'Rodrigo Ponce de León',
email: 'rodrigo@wyeworks.com',
twitter_handle: 'rponce_89',
github_handle: 'rodrigopdl',
image: 'rodrigo-pdl.jpg',
description: 'Ruby on Rails developer at WyeWorks. Beatlemaniac. Guitar freak.'
},
santiago_pastorino: {
name: 'Santiago Pastorino',
email: 'santiago@wyeworks.com',
twitter_handle: 'spastorino',
github_handle: 'spastorino',
image: 'santiago-pastorino.jpg',
description: 'WyeWorks Co-Founder & CTO, Ruby on Rails Core Team Member'
},
sebastian_martinez: {
name: 'Sebastián Martínez',
email: 'sebastian@wyeworks.com',
twitter_handle: 'smartinez87',
github_handle: 'smartinez87',
image: 'sebastian-martinez.jpg',
description: 'VP of Engineering at WyeWorks. Love to travel the world and experience all the different foods and spices in it. Lifestyle medicine advocate.'
},
federico_kauffman: {
name: 'Federico Kauffman',
email: 'federico@wyeworks.com',
twitter_handle: 'fedekauffman',
github_handle: 'fedekau',
image: 'federico-kauffman.jpg',
description: 'Software Engineer at WyeWorks. Currently working with Javascript and Ruby. Learnaholic.'
},
undefined_author: {
name: '',
email: '',
twitter_handle: '',
github_handle: '',
image: '',
description: ''
},
wyeworks: {
name: 'WyeWorks',
email: 'webmaster@wyeworks.com',
twitter_handle: 'wyeworks',
github_handle: 'wyeworks',
image: 'wyeworks.jpg',
description: ''
}
}