epilotto_curriculum 0.0.4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -21
- data/Gemfile +4 -0
- data/LICENSE +1 -1
- data/README.rdoc +2 -2
- data/Rakefile +2 -54
- data/bin/epilotto +74 -74
- data/epilotto_curriculum.gemspec +14 -54
- data/lib/epilotto_curriculum/version.rb +3 -0
- data/lib/epilotto_curriculum.rb +3 -0
- metadata +40 -34
- data/VERSION +0 -1
- data/test/helper.rb +0 -10
- data/test/test_epilotto_curriculum.rb +0 -7
data/.gitignore
CHANGED
@@ -1,21 +1,4 @@
|
|
1
|
-
|
2
|
-
.
|
3
|
-
|
4
|
-
|
5
|
-
*.tmproj
|
6
|
-
tmtags
|
7
|
-
|
8
|
-
## EMACS
|
9
|
-
*~
|
10
|
-
\#*
|
11
|
-
.\#*
|
12
|
-
|
13
|
-
## VIM
|
14
|
-
*.swp
|
15
|
-
|
16
|
-
## PROJECT::GENERAL
|
17
|
-
coverage
|
18
|
-
rdoc
|
19
|
-
pkg
|
20
|
-
|
21
|
-
## PROJECT::SPECIFIC
|
1
|
+
*.gem
|
2
|
+
.bundle
|
3
|
+
Gemfile.lock
|
4
|
+
pkg/*
|
data/Gemfile
ADDED
data/LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
Get Enrico Pilotto's Curriculm Vitae typing 'epilotto' from your terminal.
|
4
4
|
|
5
5
|
== Note on Patches/Pull Requests
|
6
|
-
|
6
|
+
|
7
7
|
* Fork the project.
|
8
8
|
* Make your feature addition or bug fix.
|
9
9
|
* Add tests for it. This is important so I don't break it in a
|
@@ -14,4 +14,4 @@ Get Enrico Pilotto's Curriculm Vitae typing 'epilotto' from your terminal.
|
|
14
14
|
|
15
15
|
== Copyright
|
16
16
|
|
17
|
-
Copyright (c)
|
17
|
+
Copyright (c) 2011 Enrico Pilotto. See LICENSE for details.
|
data/Rakefile
CHANGED
@@ -1,54 +1,2 @@
|
|
1
|
-
require '
|
2
|
-
|
3
|
-
|
4
|
-
begin
|
5
|
-
require 'jeweler'
|
6
|
-
Jeweler::Tasks.new do |gem|
|
7
|
-
gem.name = "epilotto_curriculum"
|
8
|
-
gem.summary = %Q{Enrico Pilotto's Curriculm Vitae}
|
9
|
-
gem.description = %Q{Get Enrico Pilotto's Curriculm Vitae typing 'epilotto' from your terminal}
|
10
|
-
gem.email = "enrico@megiston.it"
|
11
|
-
gem.homepage = "http://github.com/pioz/epilotto_curriculum"
|
12
|
-
gem.authors = ["Enrico Pilotto"]
|
13
|
-
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
14
|
-
gem.add_dependency "term-ansicolor"
|
15
|
-
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
|
-
end
|
17
|
-
Jeweler::GemcutterTasks.new
|
18
|
-
rescue LoadError
|
19
|
-
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
20
|
-
end
|
21
|
-
|
22
|
-
require 'rake/testtask'
|
23
|
-
Rake::TestTask.new(:test) do |test|
|
24
|
-
test.libs << 'lib' << 'test'
|
25
|
-
test.pattern = 'test/**/test_*.rb'
|
26
|
-
test.verbose = true
|
27
|
-
end
|
28
|
-
|
29
|
-
begin
|
30
|
-
require 'rcov/rcovtask'
|
31
|
-
Rcov::RcovTask.new do |test|
|
32
|
-
test.libs << 'test'
|
33
|
-
test.pattern = 'test/**/test_*.rb'
|
34
|
-
test.verbose = true
|
35
|
-
end
|
36
|
-
rescue LoadError
|
37
|
-
task :rcov do
|
38
|
-
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
task :test => :check_dependencies
|
43
|
-
|
44
|
-
task :default => :test
|
45
|
-
|
46
|
-
require 'rake/rdoctask'
|
47
|
-
Rake::RDocTask.new do |rdoc|
|
48
|
-
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
49
|
-
|
50
|
-
rdoc.rdoc_dir = 'rdoc'
|
51
|
-
rdoc.title = "epilotto_curriculum #{version}"
|
52
|
-
rdoc.rdoc_files.include('README*')
|
53
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
54
|
-
end
|
1
|
+
require 'bundler'
|
2
|
+
Bundler::GemHelper.install_tasks
|
data/bin/epilotto
CHANGED
@@ -1,87 +1,87 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# -*- encoding: utf-8 -*-
|
2
3
|
|
3
4
|
require 'rubygems'
|
4
5
|
require 'term/ansicolor'
|
5
6
|
include Term::ANSIColor
|
6
7
|
|
7
8
|
curriculum = <<-EOF
|
8
|
-
|
9
|
-
Curriculum vitae di #{red}#{bold}Enrico Pilotto#{reset}
|
10
|
-
------------------------------------
|
11
9
|
|
12
|
-
#{bold}
|
13
|
-
|
14
|
-
telefono | +39 333 28 03 893
|
15
|
-
email | enrico@megiston.it
|
16
|
-
|
|
17
|
-
cittadinanza | italiana
|
18
|
-
data di nascita | 21 Ottobre 1984
|
19
|
-
luogo di nascita | Cittadella (PD)
|
20
|
-
sesso | maschile
|
10
|
+
#{red}#{bold}Enrico Pilotto#{reset}'s Curriculum Vitae
|
11
|
+
-----------------------------------
|
21
12
|
|
22
|
-
#{bold}
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
#{
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
#{bold}
|
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
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
13
|
+
#{bold}#{yellow}Personal information#{reset}
|
14
|
+
name #{cyan}|#{reset} Enrico
|
15
|
+
surname #{cyan}|#{reset} Pilotto
|
16
|
+
address #{cyan}|#{reset} via Roma 14, San Martino di Lupari (PD) - 35018
|
17
|
+
nationality #{cyan}|#{reset} italian
|
18
|
+
date of birth #{cyan}|#{reset} 21 October 1984
|
19
|
+
sex #{cyan}|#{reset} M
|
20
|
+
#{cyan}|#{reset}
|
21
|
+
telephone #{cyan}|#{reset} +39 333 2803893
|
22
|
+
email #{cyan}|#{reset} enrico@megiston.it
|
23
|
+
website #{cyan}|#{reset} http://www.pioz.it/
|
24
|
+
twitter #{cyan}|#{reset} http://twitter.com/pioz
|
25
|
+
|
26
|
+
#{bold}#{yellow}Education and training#{reset}
|
27
|
+
2003 #{cyan}|#{reset} High school degree - Surveyor
|
28
|
+
2009 #{cyan}|#{reset} Master degree in Computer Science at the University of Padua
|
29
|
+
#{cyan}|#{reset} with vote 107/110.
|
30
|
+
|
31
|
+
#{bold}#{yellow}Work experience#{reset}
|
32
|
+
2006 #{cyan}|#{reset} Three-month internship in the spring of 2006 at the company
|
33
|
+
#{cyan}|#{reset} Digitalblu s.n.c. in which I have developed a software
|
34
|
+
#{cyan}|#{reset} application in C\# (Visual Studio. NET 2005) to handle calls
|
35
|
+
#{cyan}|#{reset} through a PBX.
|
36
|
+
2009-2011 #{cyan}|#{reset} Working as a freelancer developing web applications in
|
37
|
+
#{cyan}|#{reset} 'Ruby on Rails'.
|
38
|
+
pubblications #{cyan}|#{reset} Compact preference representation in stable marriage problems.
|
39
|
+
|
40
|
+
#{bold}#{yellow}Personal skills#{reset}
|
41
|
+
languages #{cyan}|#{reset} Italian native speaker. Basic knowledge of English studied
|
42
|
+
#{cyan}|#{reset} three years in middle school and five years in high school.
|
43
|
+
driving license #{cyan}|#{reset} Driver's license B
|
44
|
+
#{cyan}|#{reset}
|
45
|
+
skills #{cyan}|#{reset} * Computer science is my passion.
|
46
|
+
#{cyan}|#{reset} * Interested and intrigued by new technologies. I do not
|
47
|
+
#{cyan}|#{reset} fossilize over a single technology.
|
48
|
+
#{cyan}|#{reset} * Versatile in the use of programming languages and
|
49
|
+
#{cyan}|#{reset} development tools.
|
50
|
+
#{cyan}|#{reset} * Good experience in team work, knowledge of support
|
51
|
+
#{cyan}|#{reset} tools such as trackers, version control system.
|
52
|
+
#{cyan}|#{reset} * Experience in obtaining information from the web: doc,
|
53
|
+
#{cyan}|#{reset} API, blog, forum...
|
54
|
+
#{cyan}|#{reset} * When I have a problem, first search on Google, then
|
55
|
+
#{cyan}|#{reset} ask to other people!
|
56
|
+
#{cyan}|#{reset}
|
57
|
+
S.O. #{cyan}|#{reset} GNU/Linux Debian (very good)
|
58
|
+
#{cyan}|#{reset} MacOSX 10.5 (very good)
|
59
|
+
#{cyan}|#{reset} MS Windows (poor)
|
60
|
+
programming #{cyan}|#{reset} C/C++ (very good)
|
61
|
+
#{cyan}|#{reset} Ruby (very good)
|
62
|
+
#{cyan}|#{reset} Java (good)
|
63
|
+
#{cyan}|#{reset} Python (good)
|
64
|
+
#{cyan}|#{reset} .NET C# (very good)
|
65
|
+
#{cyan}|#{reset} Ada (base - concurrency)
|
66
|
+
#{cyan}|#{reset} PHP (good)
|
67
|
+
#{cyan}|#{reset} ML (poor)
|
68
|
+
#{cyan}|#{reset} LaTeX (very good)
|
69
|
+
#{cyan}|#{reset}
|
70
|
+
web framework #{cyan}|#{reset} Ruby on Rails (very good)
|
71
|
+
#{cyan}|#{reset}
|
72
|
+
other #{cyan}|#{reset} Apache2 (very good)
|
73
|
+
#{cyan}|#{reset} MySQL (very good)
|
74
|
+
#{cyan}|#{reset} Oracle (poor)
|
75
|
+
#{cyan}|#{reset} MongoDB (good)
|
76
|
+
#{cyan}|#{reset} Microsoft Visual Studio .NET (base)
|
77
|
+
#{cyan}|#{reset} Git (very good)
|
78
|
+
#{cyan}|#{reset} GTK/GTKmm
|
79
|
+
#{cyan}|#{reset} OpenGL
|
80
|
+
#{cyan}|#{reset} WxWidgets
|
81
|
+
#{cyan}|#{reset} ...
|
82
|
+
#{cyan}|#{reset}
|
83
|
+
some projects #{cyan}|#{reset} https://github.com/pioz
|
79
84
|
|
80
|
-
#{bold}Autorizzazione dati personali#{reset}
|
81
|
-
| Acconsento il trattamento dei dati qui sopra riportati in
|
82
|
-
| ottemperanza della legge 675/96 per tutti gli scopi, fatto
|
83
|
-
| salvo per quelli pubblicitari e/o statistici. Tutti gli abusi
|
84
|
-
| verranno perseguiti a norma di legge.
|
85
85
|
EOF
|
86
86
|
|
87
87
|
puts curriculum
|
data/epilotto_curriculum.gemspec
CHANGED
@@ -1,59 +1,19 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "epilotto_curriculum/version"
|
5
4
|
|
6
5
|
Gem::Specification.new do |s|
|
7
|
-
s.name
|
8
|
-
s.version
|
9
|
-
|
10
|
-
s.
|
11
|
-
s.
|
12
|
-
s.
|
13
|
-
s.
|
14
|
-
s.description
|
15
|
-
s.
|
16
|
-
s.
|
17
|
-
s.
|
18
|
-
"LICENSE",
|
19
|
-
"README.rdoc"
|
20
|
-
]
|
21
|
-
s.files = [
|
22
|
-
".gitignore",
|
23
|
-
"LICENSE",
|
24
|
-
"README.rdoc",
|
25
|
-
"Rakefile",
|
26
|
-
"VERSION",
|
27
|
-
"bin/epilotto",
|
28
|
-
"epilotto_curriculum.gemspec",
|
29
|
-
"lib/epilotto_curriculum.rb",
|
30
|
-
"test/helper.rb",
|
31
|
-
"test/test_epilotto_curriculum.rb"
|
32
|
-
]
|
33
|
-
s.homepage = %q{http://github.com/pioz/epilotto_curriculum}
|
34
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
6
|
+
s.name = "epilotto_curriculum"
|
7
|
+
s.version = EpilottoCurriculum::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Enrico Pilotto"]
|
10
|
+
s.email = ["enrico@megiston.it"]
|
11
|
+
s.homepage = "http://github.com/pioz/epilotto_curriculum"
|
12
|
+
s.summary = "Get Enrico Pilotto's Curriculm Vitae typing 'epilotto' from your terminal"
|
13
|
+
s.description = s.summary
|
14
|
+
s.files = `git ls-files`.split("\n")
|
15
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
35
17
|
s.require_paths = ["lib"]
|
36
|
-
s.
|
37
|
-
s.summary = %q{Enrico Pilotto's Curriculm Vitae}
|
38
|
-
s.test_files = [
|
39
|
-
"test/test_epilotto_curriculum.rb",
|
40
|
-
"test/helper.rb"
|
41
|
-
]
|
42
|
-
|
43
|
-
if s.respond_to? :specification_version then
|
44
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
45
|
-
s.specification_version = 3
|
46
|
-
|
47
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
48
|
-
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
49
|
-
s.add_runtime_dependency(%q<term-ansicolor>, [">= 0"])
|
50
|
-
else
|
51
|
-
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
52
|
-
s.add_dependency(%q<term-ansicolor>, [">= 0"])
|
53
|
-
end
|
54
|
-
else
|
55
|
-
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
56
|
-
s.add_dependency(%q<term-ansicolor>, [">= 0"])
|
57
|
-
end
|
18
|
+
s.add_dependency('term-ansicolor', '>= 1.0.5')
|
58
19
|
end
|
59
|
-
|
data/lib/epilotto_curriculum.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: epilotto_curriculum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 27
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 0.1.0
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Enrico Pilotto
|
@@ -9,77 +15,77 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
13
|
-
default_executable:
|
18
|
+
date: 2011-03-31 00:00:00 +02:00
|
19
|
+
default_executable:
|
14
20
|
dependencies:
|
15
|
-
- !ruby/object:Gem::Dependency
|
16
|
-
name: thoughtbot-shoulda
|
17
|
-
type: :development
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "0"
|
24
|
-
version:
|
25
21
|
- !ruby/object:Gem::Dependency
|
26
22
|
name: term-ansicolor
|
27
|
-
|
28
|
-
|
29
|
-
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
30
26
|
requirements:
|
31
27
|
- - ">="
|
32
28
|
- !ruby/object:Gem::Version
|
33
|
-
|
34
|
-
|
29
|
+
hash: 29
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 0
|
33
|
+
- 5
|
34
|
+
version: 1.0.5
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
35
37
|
description: Get Enrico Pilotto's Curriculm Vitae typing 'epilotto' from your terminal
|
36
|
-
email:
|
38
|
+
email:
|
39
|
+
- enrico@megiston.it
|
37
40
|
executables:
|
38
41
|
- epilotto
|
39
42
|
extensions: []
|
40
43
|
|
41
|
-
extra_rdoc_files:
|
42
|
-
|
43
|
-
- README.rdoc
|
44
|
+
extra_rdoc_files: []
|
45
|
+
|
44
46
|
files:
|
45
47
|
- .gitignore
|
48
|
+
- Gemfile
|
46
49
|
- LICENSE
|
47
50
|
- README.rdoc
|
48
51
|
- Rakefile
|
49
|
-
- VERSION
|
50
52
|
- bin/epilotto
|
51
53
|
- epilotto_curriculum.gemspec
|
52
54
|
- lib/epilotto_curriculum.rb
|
53
|
-
-
|
54
|
-
- test/test_epilotto_curriculum.rb
|
55
|
+
- lib/epilotto_curriculum/version.rb
|
55
56
|
has_rdoc: true
|
56
57
|
homepage: http://github.com/pioz/epilotto_curriculum
|
57
58
|
licenses: []
|
58
59
|
|
59
60
|
post_install_message:
|
60
|
-
rdoc_options:
|
61
|
-
|
61
|
+
rdoc_options: []
|
62
|
+
|
62
63
|
require_paths:
|
63
64
|
- lib
|
64
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
65
67
|
requirements:
|
66
68
|
- - ">="
|
67
69
|
- !ruby/object:Gem::Version
|
70
|
+
hash: 3
|
71
|
+
segments:
|
72
|
+
- 0
|
68
73
|
version: "0"
|
69
|
-
version:
|
70
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
71
76
|
requirements:
|
72
77
|
- - ">="
|
73
78
|
- !ruby/object:Gem::Version
|
79
|
+
hash: 3
|
80
|
+
segments:
|
81
|
+
- 0
|
74
82
|
version: "0"
|
75
|
-
version:
|
76
83
|
requirements: []
|
77
84
|
|
78
85
|
rubyforge_project:
|
79
|
-
rubygems_version: 1.
|
86
|
+
rubygems_version: 1.4.2
|
80
87
|
signing_key:
|
81
88
|
specification_version: 3
|
82
|
-
summary: Enrico Pilotto's Curriculm Vitae
|
83
|
-
test_files:
|
84
|
-
|
85
|
-
- test/helper.rb
|
89
|
+
summary: Get Enrico Pilotto's Curriculm Vitae typing 'epilotto' from your terminal
|
90
|
+
test_files: []
|
91
|
+
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.0.4
|
data/test/helper.rb
DELETED