dbarison_curriculum 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -21
- data/.idea/.rakeTasks +7 -0
- data/.idea/dbarison_curriculum.iml +22 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +9 -0
- data/.idea/vcs.xml +8 -0
- data/.idea/workspace.xml +419 -0
- data/Gemfile +4 -0
- data/README.rdoc +2 -2
- data/Rakefile +2 -54
- data/VERSION +1 -1
- data/bin/dbarison +69 -66
- data/dbarison_curriculum.gemspec +15 -54
- data/lib/dbarison_curriculum/version.rb +3 -0
- data/lib/dbarison_curriculum.rb +3 -0
- metadata +39 -37
data/.gitignore
CHANGED
|
@@ -1,22 +1,5 @@
|
|
|
1
|
-
## MAC OS
|
|
2
|
-
.DS_Store
|
|
3
|
-
|
|
4
|
-
## TEXTMATE
|
|
5
|
-
*.tmproj
|
|
6
|
-
tmtags
|
|
7
|
-
|
|
8
|
-
## EMACS
|
|
9
|
-
*~
|
|
10
|
-
\#*
|
|
11
|
-
.\#*
|
|
12
|
-
|
|
13
|
-
## VIM
|
|
14
|
-
*.swp
|
|
15
1
|
.idea/*
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
pkg
|
|
21
|
-
|
|
22
|
-
## PROJECT::SPECIFIC
|
|
2
|
+
*.gem
|
|
3
|
+
.bundle
|
|
4
|
+
Gemfile.lock
|
|
5
|
+
pkg/*
|
data/.idea/.rakeTasks
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
|
3
|
+
You are allowed to:
|
|
4
|
+
1. Remove rake task
|
|
5
|
+
2. Add existing rake tasks
|
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Remove rcov products for rcov" fullCmd="clobber_rcov" taksId="clobber_rcov" /><RakeTask description="Remove rdoc products" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Analyze code coverage with tests" fullCmd="rcov" taksId="rcov" /><RakeTask description="Build the rdoc HTML Files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Force a rebuild of the RDOC files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Run tests" fullCmd="test" taksId="test" /><RakeTask description="" fullCmd="clobber" taksId="clobber" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /></RakeGroup></Settings>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="GemRequirementsHolder" version="3">
|
|
4
|
+
<requirement>
|
|
5
|
+
<requirement>
|
|
6
|
+
<dependency name="term-ansicolor" version="1.0.5" bound="GREATER_OR_EQUAL" git="false" path="false" doRequire="true" />
|
|
7
|
+
</requirement>
|
|
8
|
+
<source from="Gemfile" />
|
|
9
|
+
</requirement>
|
|
10
|
+
</component>
|
|
11
|
+
<component name="NewModuleRootManager">
|
|
12
|
+
<content url="file://$MODULE_DIR$">
|
|
13
|
+
<excludeFolder url="file://$MODULE_DIR$/.bundle" />
|
|
14
|
+
</content>
|
|
15
|
+
<orderEntry type="inheritedJdk" />
|
|
16
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] rake (v0.8.7, /Users/davide/.rvm/gems/ruby-1.9.2-p0@global/gems/rake-0.8.7)" level="application" />
|
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] bundler (v1.0.10, /Users/davide/.rvm/gems/ruby-1.9.2-p0@rails3/gems/bundler-1.0.10)" level="application" />
|
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] term-ansicolor (v1.0.5, /Users/davide/.rvm/gems/ruby-1.9.2-p0@rails3/gems/term-ansicolor-1.0.5)" level="application" />
|
|
20
|
+
</component>
|
|
21
|
+
</module>
|
|
22
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="DependencyValidationManager">
|
|
4
|
+
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectDetails">
|
|
7
|
+
<option name="projectName" value="dbarison_curriculum" />
|
|
8
|
+
</component>
|
|
9
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Ruby SDK 1.9.2-p0 [rails3]" project-jdk-type="RUBY_SDK" />
|
|
10
|
+
<component name="SvnBranchConfigurationManager">
|
|
11
|
+
<option name="mySupportsUserInfoFilter" value="true" />
|
|
12
|
+
</component>
|
|
13
|
+
</project>
|
|
14
|
+
|
data/.idea/modules.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/dbarison_curriculum.iml" filepath="$PROJECT_DIR$/.idea/dbarison_curriculum.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="f55676d2-7aba-4263-b79f-e4565b850769" name="Default" comment="">
|
|
5
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/.rakeTasks" />
|
|
6
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/dbarison_curriculum.iml" />
|
|
7
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/encodings.xml" />
|
|
8
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/misc.xml" />
|
|
9
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/modules.xml" />
|
|
10
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/vcs.xml" />
|
|
11
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
|
12
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/Gemfile" />
|
|
13
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/dbarison_curriculum/version.rb" />
|
|
14
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.gitignore" afterPath="$PROJECT_DIR$/.gitignore" />
|
|
15
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.rdoc" afterPath="$PROJECT_DIR$/README.rdoc" />
|
|
16
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Rakefile" afterPath="$PROJECT_DIR$/Rakefile" />
|
|
17
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/VERSION" afterPath="$PROJECT_DIR$/VERSION" />
|
|
18
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/bin/dbarison" afterPath="$PROJECT_DIR$/bin/dbarison" />
|
|
19
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/dbarison_curriculum.gemspec" afterPath="$PROJECT_DIR$/dbarison_curriculum.gemspec" />
|
|
20
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/dbarison_curriculum.rb" afterPath="$PROJECT_DIR$/lib/dbarison_curriculum.rb" />
|
|
21
|
+
</list>
|
|
22
|
+
<ignored path="dbarison_curriculum.iws" />
|
|
23
|
+
<ignored path=".idea/workspace.xml" />
|
|
24
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
25
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
26
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
27
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
28
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
29
|
+
</component>
|
|
30
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
31
|
+
<component name="CoverageDataManager" choice="3" />
|
|
32
|
+
<component name="CreatePatchCommitExecutor">
|
|
33
|
+
<option name="PATCH_PATH" value="" />
|
|
34
|
+
<option name="REVERSE_PATCH" value="false" />
|
|
35
|
+
</component>
|
|
36
|
+
<component name="DaemonCodeAnalyzer">
|
|
37
|
+
<disable_hints />
|
|
38
|
+
</component>
|
|
39
|
+
<component name="FavoritesManager">
|
|
40
|
+
<favorites_list name="dbarison_curriculum" />
|
|
41
|
+
</component>
|
|
42
|
+
<component name="FileEditorManager">
|
|
43
|
+
<leaf>
|
|
44
|
+
<file leaf-file-name="dbarison_curriculum.rb" pinned="false" current="false" current-in-tab="false">
|
|
45
|
+
<entry file="file://$PROJECT_DIR$/lib/dbarison_curriculum.rb">
|
|
46
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
47
|
+
<state line="3" column="0" selection-start="57" selection-end="57" vertical-scroll-proportion="0.0">
|
|
48
|
+
<folding />
|
|
49
|
+
</state>
|
|
50
|
+
</provider>
|
|
51
|
+
</entry>
|
|
52
|
+
</file>
|
|
53
|
+
<file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
|
|
54
|
+
<entry file="file://$PROJECT_DIR$/lib/dbarison_curriculum/version.rb">
|
|
55
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
56
|
+
<state line="1" column="18" selection-start="44" selection-end="44" vertical-scroll-proportion="0.0">
|
|
57
|
+
<folding />
|
|
58
|
+
</state>
|
|
59
|
+
</provider>
|
|
60
|
+
</entry>
|
|
61
|
+
</file>
|
|
62
|
+
<file leaf-file-name="dbarison" pinned="false" current="true" current-in-tab="true">
|
|
63
|
+
<entry file="file://$PROJECT_DIR$/bin/dbarison">
|
|
64
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
65
|
+
<state line="93" column="17" selection-start="4046" selection-end="4046" vertical-scroll-proportion="0.95731705">
|
|
66
|
+
<folding />
|
|
67
|
+
</state>
|
|
68
|
+
</provider>
|
|
69
|
+
</entry>
|
|
70
|
+
</file>
|
|
71
|
+
<file leaf-file-name="dbarison_curriculum.gemspec" pinned="false" current="false" current-in-tab="false">
|
|
72
|
+
<entry file="file://$PROJECT_DIR$/dbarison_curriculum.gemspec">
|
|
73
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
74
|
+
<state line="12" column="54" selection-start="508" selection-end="508" vertical-scroll-proportion="0.0">
|
|
75
|
+
<folding />
|
|
76
|
+
</state>
|
|
77
|
+
</provider>
|
|
78
|
+
</entry>
|
|
79
|
+
</file>
|
|
80
|
+
<file leaf-file-name="Gemfile.lock" pinned="false" current="false" current-in-tab="false">
|
|
81
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
|
82
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
83
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
84
|
+
<folding />
|
|
85
|
+
</state>
|
|
86
|
+
</provider>
|
|
87
|
+
</entry>
|
|
88
|
+
</file>
|
|
89
|
+
<file leaf-file-name=".document" pinned="false" current="false" current-in-tab="false">
|
|
90
|
+
<entry file="file://$PROJECT_DIR$/.document">
|
|
91
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
92
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
93
|
+
<folding />
|
|
94
|
+
</state>
|
|
95
|
+
</provider>
|
|
96
|
+
</entry>
|
|
97
|
+
</file>
|
|
98
|
+
<file leaf-file-name="README.rdoc" pinned="false" current="false" current-in-tab="false">
|
|
99
|
+
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
|
100
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
101
|
+
<state line="16" column="33" selection-start="576" selection-end="576" vertical-scroll-proportion="0.0">
|
|
102
|
+
<folding />
|
|
103
|
+
</state>
|
|
104
|
+
</provider>
|
|
105
|
+
</entry>
|
|
106
|
+
</file>
|
|
107
|
+
<file leaf-file-name="VERSION" pinned="false" current="false" current-in-tab="false">
|
|
108
|
+
<entry file="file://$PROJECT_DIR$/VERSION">
|
|
109
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
110
|
+
<state line="0" column="5" selection-start="5" selection-end="5" vertical-scroll-proportion="0.0">
|
|
111
|
+
<folding />
|
|
112
|
+
</state>
|
|
113
|
+
</provider>
|
|
114
|
+
</entry>
|
|
115
|
+
</file>
|
|
116
|
+
<file leaf-file-name="Rakefile" pinned="false" current="false" current-in-tab="false">
|
|
117
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
118
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
119
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
120
|
+
<folding />
|
|
121
|
+
</state>
|
|
122
|
+
</provider>
|
|
123
|
+
</entry>
|
|
124
|
+
</file>
|
|
125
|
+
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
|
126
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
127
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
128
|
+
<state line="4" column="0" selection-start="103" selection-end="103" vertical-scroll-proportion="0.0">
|
|
129
|
+
<folding />
|
|
130
|
+
</state>
|
|
131
|
+
</provider>
|
|
132
|
+
</entry>
|
|
133
|
+
</file>
|
|
134
|
+
</leaf>
|
|
135
|
+
</component>
|
|
136
|
+
<component name="FindManager">
|
|
137
|
+
<FindUsagesManager>
|
|
138
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
|
139
|
+
</FindUsagesManager>
|
|
140
|
+
</component>
|
|
141
|
+
<component name="Git.Settings">
|
|
142
|
+
<option name="CHECKOUT_INCLUDE_TAGS" value="false" />
|
|
143
|
+
<option name="UPDATE_CHANGES_POLICY" value="STASH" />
|
|
144
|
+
</component>
|
|
145
|
+
<component name="IdeDocumentHistory">
|
|
146
|
+
<option name="changedFiles">
|
|
147
|
+
<list>
|
|
148
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
|
149
|
+
<option value="$PROJECT_DIR$/README.rdoc" />
|
|
150
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
|
151
|
+
<option value="$PROJECT_DIR$/lib/dbarison_curriculum.rb" />
|
|
152
|
+
<option value="$PROJECT_DIR$/lib/dbarison_curriculum/version.rb" />
|
|
153
|
+
<option value="$PROJECT_DIR$/VERSION" />
|
|
154
|
+
<option value="$PROJECT_DIR$/dbarison_curriculum.gemspec" />
|
|
155
|
+
<option value="$PROJECT_DIR$/bin/dbarison" />
|
|
156
|
+
</list>
|
|
157
|
+
</option>
|
|
158
|
+
</component>
|
|
159
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
160
|
+
<OptionsSetting value="true" id="Add" />
|
|
161
|
+
<OptionsSetting value="true" id="Remove" />
|
|
162
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
163
|
+
<OptionsSetting value="true" id="Update" />
|
|
164
|
+
<OptionsSetting value="true" id="Status" />
|
|
165
|
+
<OptionsSetting value="true" id="Edit" />
|
|
166
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
167
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
168
|
+
</component>
|
|
169
|
+
<component name="ProjectReloadState">
|
|
170
|
+
<option name="STATE" value="0" />
|
|
171
|
+
</component>
|
|
172
|
+
<component name="ProjectView">
|
|
173
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
|
174
|
+
<flattenPackages />
|
|
175
|
+
<showMembers />
|
|
176
|
+
<showModules />
|
|
177
|
+
<showLibraryContents />
|
|
178
|
+
<hideEmptyPackages />
|
|
179
|
+
<abbreviatePackageNames />
|
|
180
|
+
<autoscrollToSource />
|
|
181
|
+
<autoscrollFromSource />
|
|
182
|
+
<sortByType />
|
|
183
|
+
</navigator>
|
|
184
|
+
<panes>
|
|
185
|
+
<pane id="Scope" />
|
|
186
|
+
<pane id="ProjectPane">
|
|
187
|
+
<subPane>
|
|
188
|
+
<PATH>
|
|
189
|
+
<PATH_ELEMENT>
|
|
190
|
+
<option name="myItemId" value="dbarison_curriculum" />
|
|
191
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
192
|
+
</PATH_ELEMENT>
|
|
193
|
+
</PATH>
|
|
194
|
+
<PATH>
|
|
195
|
+
<PATH_ELEMENT>
|
|
196
|
+
<option name="myItemId" value="dbarison_curriculum" />
|
|
197
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
198
|
+
</PATH_ELEMENT>
|
|
199
|
+
<PATH_ELEMENT>
|
|
200
|
+
<option name="myItemId" value="dbarison_curriculum" />
|
|
201
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
202
|
+
</PATH_ELEMENT>
|
|
203
|
+
</PATH>
|
|
204
|
+
<PATH>
|
|
205
|
+
<PATH_ELEMENT>
|
|
206
|
+
<option name="myItemId" value="dbarison_curriculum" />
|
|
207
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
208
|
+
</PATH_ELEMENT>
|
|
209
|
+
<PATH_ELEMENT>
|
|
210
|
+
<option name="myItemId" value="dbarison_curriculum" />
|
|
211
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
212
|
+
</PATH_ELEMENT>
|
|
213
|
+
<PATH_ELEMENT>
|
|
214
|
+
<option name="myItemId" value="lib" />
|
|
215
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
216
|
+
</PATH_ELEMENT>
|
|
217
|
+
</PATH>
|
|
218
|
+
</subPane>
|
|
219
|
+
</pane>
|
|
220
|
+
<pane id="Favorites" />
|
|
221
|
+
</panes>
|
|
222
|
+
</component>
|
|
223
|
+
<component name="RunManager">
|
|
224
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
225
|
+
<module name="" />
|
|
226
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
227
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
|
228
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
229
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
230
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
|
231
|
+
<envs />
|
|
232
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
233
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
|
234
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
235
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
236
|
+
</COVERAGE_PATTERN>
|
|
237
|
+
</EXTENSION>
|
|
238
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
|
239
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
240
|
+
<method />
|
|
241
|
+
</configuration>
|
|
242
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda">
|
|
243
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
|
244
|
+
<module name="" />
|
|
245
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
|
246
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
247
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
248
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
249
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
250
|
+
<envs />
|
|
251
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
252
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
|
253
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
254
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
255
|
+
</COVERAGE_PATTERN>
|
|
256
|
+
</EXTENSION>
|
|
257
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
258
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
259
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_CLASS_NAME" VALUE="" />
|
|
260
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
|
261
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
|
262
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
263
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="INHERITANCE_CHECK_DISABLED" VALUE="false" />
|
|
264
|
+
<method />
|
|
265
|
+
</configuration>
|
|
266
|
+
<list size="0" />
|
|
267
|
+
</component>
|
|
268
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
269
|
+
<component name="SvnConfiguration" maxAnnotateRevisions="500">
|
|
270
|
+
<option name="USER" value="" />
|
|
271
|
+
<option name="PASSWORD" value="" />
|
|
272
|
+
<option name="LAST_MERGED_REVISION" />
|
|
273
|
+
<option name="MERGE_DRY_RUN" value="false" />
|
|
274
|
+
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
|
275
|
+
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
|
276
|
+
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
|
277
|
+
<option name="DETECT_NESTED_COPIES" value="false" />
|
|
278
|
+
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
|
279
|
+
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
|
280
|
+
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
|
281
|
+
<option name="FORCE_UPDATE" value="false" />
|
|
282
|
+
<configuration useDefault="false">$USER_HOME$/.subversion</configuration>
|
|
283
|
+
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
|
284
|
+
<supportedVersion>125</supportedVersion>
|
|
285
|
+
</component>
|
|
286
|
+
<component name="TaskManager">
|
|
287
|
+
<task active="true" id="Default" summary="Default task">
|
|
288
|
+
<changelist id="f55676d2-7aba-4263-b79f-e4565b850769" name="Default" comment="" />
|
|
289
|
+
<created>1301561615433</created>
|
|
290
|
+
<updated>1301561615433</updated>
|
|
291
|
+
</task>
|
|
292
|
+
<servers />
|
|
293
|
+
</component>
|
|
294
|
+
<component name="ToolWindowManager">
|
|
295
|
+
<frame x="2" y="22" width="1920" height="1108" extended-state="0" />
|
|
296
|
+
<editor active="true" />
|
|
297
|
+
<layout>
|
|
298
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
299
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
|
300
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="true" content_ui="tabs" />
|
|
301
|
+
<window_info id="Dependency Viewer" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
302
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24947257" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
303
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
304
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
305
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
306
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
|
307
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
308
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
309
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
310
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
311
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
312
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
|
313
|
+
</layout>
|
|
314
|
+
</component>
|
|
315
|
+
<component name="VcsManagerConfiguration">
|
|
316
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
|
317
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
|
318
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
|
319
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
|
320
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
|
321
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
|
322
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
|
323
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
|
324
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="true" />
|
|
325
|
+
<option name="ENABLE_BACKGROUND_PROCESSES" value="false" />
|
|
326
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
|
327
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
|
328
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
|
329
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
|
330
|
+
<option name="LAST_COMMIT_MESSAGE" />
|
|
331
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
|
|
332
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
333
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
|
334
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
|
335
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
|
336
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
|
337
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
|
338
|
+
<option name="ACTIVE_VCS_NAME" />
|
|
339
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
|
340
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
|
341
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
|
342
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
|
343
|
+
</component>
|
|
344
|
+
<component name="XDebuggerManager">
|
|
345
|
+
<breakpoint-manager />
|
|
346
|
+
</component>
|
|
347
|
+
<component name="editorHistoryManager">
|
|
348
|
+
<entry file="file://$PROJECT_DIR$/.bundle/config">
|
|
349
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
350
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
|
|
351
|
+
</provider>
|
|
352
|
+
</entry>
|
|
353
|
+
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
|
354
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
355
|
+
<state line="16" column="33" selection-start="576" selection-end="576" vertical-scroll-proportion="0.0" />
|
|
356
|
+
</provider>
|
|
357
|
+
</entry>
|
|
358
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
|
359
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
360
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
361
|
+
<folding />
|
|
362
|
+
</state>
|
|
363
|
+
</provider>
|
|
364
|
+
</entry>
|
|
365
|
+
<entry file="file://$PROJECT_DIR$/.document">
|
|
366
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
367
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
|
|
368
|
+
</provider>
|
|
369
|
+
</entry>
|
|
370
|
+
<entry file="file://$PROJECT_DIR$/lib/dbarison_curriculum.rb">
|
|
371
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
372
|
+
<state line="3" column="0" selection-start="57" selection-end="57" vertical-scroll-proportion="0.0">
|
|
373
|
+
<folding />
|
|
374
|
+
</state>
|
|
375
|
+
</provider>
|
|
376
|
+
</entry>
|
|
377
|
+
<entry file="file://$PROJECT_DIR$/lib/dbarison_curriculum/version.rb">
|
|
378
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
379
|
+
<state line="1" column="18" selection-start="44" selection-end="44" vertical-scroll-proportion="0.0">
|
|
380
|
+
<folding />
|
|
381
|
+
</state>
|
|
382
|
+
</provider>
|
|
383
|
+
</entry>
|
|
384
|
+
<entry file="file://$PROJECT_DIR$/VERSION">
|
|
385
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
386
|
+
<state line="0" column="5" selection-start="5" selection-end="5" vertical-scroll-proportion="0.0" />
|
|
387
|
+
</provider>
|
|
388
|
+
</entry>
|
|
389
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
390
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
391
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
392
|
+
<folding />
|
|
393
|
+
</state>
|
|
394
|
+
</provider>
|
|
395
|
+
</entry>
|
|
396
|
+
<entry file="file://$PROJECT_DIR$/dbarison_curriculum.gemspec">
|
|
397
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
398
|
+
<state line="12" column="54" selection-start="508" selection-end="508" vertical-scroll-proportion="0.0">
|
|
399
|
+
<folding />
|
|
400
|
+
</state>
|
|
401
|
+
</provider>
|
|
402
|
+
</entry>
|
|
403
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
404
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
405
|
+
<state line="4" column="0" selection-start="103" selection-end="103" vertical-scroll-proportion="0.0">
|
|
406
|
+
<folding />
|
|
407
|
+
</state>
|
|
408
|
+
</provider>
|
|
409
|
+
</entry>
|
|
410
|
+
<entry file="file://$PROJECT_DIR$/bin/dbarison">
|
|
411
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
412
|
+
<state line="93" column="17" selection-start="4046" selection-end="4046" vertical-scroll-proportion="0.95731705">
|
|
413
|
+
<folding />
|
|
414
|
+
</state>
|
|
415
|
+
</provider>
|
|
416
|
+
</entry>
|
|
417
|
+
</component>
|
|
418
|
+
</project>
|
|
419
|
+
|
data/Gemfile
ADDED
data/README.rdoc
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
= epilotto_curriculum
|
|
2
2
|
|
|
3
|
-
Get
|
|
3
|
+
Get Davide Barison's Curriculm Vitae typing 'dbarison' from your terminal.
|
|
4
4
|
|
|
5
5
|
== Note on Patches/Pull Requests
|
|
6
6
|
|
|
@@ -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) 2010
|
|
17
|
+
Copyright (c) 2010 Davide Barison. 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 = "dbarison_curriculum"
|
|
8
|
-
gem.summary = %Q{Davide Barison's Curriculm Vitae}
|
|
9
|
-
gem.description = %Q{Get Davide Barison's Curriculm Vitae typing 'dbarison' from your terminal}
|
|
10
|
-
gem.email = "davide@megiston.it"
|
|
11
|
-
gem.homepage = "http://github.com/dbarison/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 = "dbarison_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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.4
|
data/bin/dbarison
CHANGED
|
@@ -1,96 +1,99 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
3
|
require 'rubygems'
|
|
4
|
-
require 'launchy'
|
|
5
4
|
require 'term/ansicolor'
|
|
6
5
|
include Term::ANSIColor
|
|
7
6
|
|
|
8
7
|
curriculum = <<-EOF
|
|
9
8
|
|
|
10
|
-
Curriculum vitae
|
|
9
|
+
Curriculum vitae/Résumé of #{red}#{bold}Davide Barison#{reset}
|
|
11
10
|
------------------------------------
|
|
12
11
|
|
|
13
|
-
#{bold}
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
#{bold}Personal information:#{reset}
|
|
13
|
+
address | via Papa Giovanni XXIII 4, Masera` di Padova (PD), ITALY - 35020
|
|
14
|
+
telephone | +39 328 65 98 021
|
|
16
15
|
email | davide@megiston.it
|
|
17
16
|
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
nationality | Italian
|
|
18
|
+
date of birth | 16/03/1984
|
|
19
|
+
sex | M
|
|
21
20
|
|
|
22
|
-
#{bold}
|
|
23
|
-
2003 |
|
|
24
|
-
|
|
|
25
|
-
2008 |
|
|
26
|
-
|
|
|
27
|
-
|
|
|
21
|
+
#{bold}Education:#{reset}
|
|
22
|
+
2003 | High School Degree - Computer science High School
|
|
23
|
+
| (Technical institute Francesco Severi of Padua (PD) ITALY)
|
|
24
|
+
2008 | Bachelor's degree in Computer Science
|
|
25
|
+
| (University of Padua ITALY)
|
|
26
|
+
| vote: 91/110
|
|
28
27
|
|
|
29
|
-
#{bold}
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
#{bold}Job and training experience: #{reset}
|
|
29
|
+
from 15-06-01 | High school internship in OM Businaro snc (Albignasego Padua).
|
|
30
|
+
to 30-07-01 | In this stage i developed my first static website (html+css)
|
|
32
31
|
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
| dinamico in php, con supporto database.
|
|
32
|
+
from 15-06-02 | High school internship in Ottogalli spa of Padua
|
|
33
|
+
to 30-07-02 | In this stage i developed my first dynamic website (php,mysql,html)
|
|
36
34
|
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
| Degna di nota l'integrazione con un motore di WorkFlow (OpenWFE)
|
|
40
|
-
| per la gestione del ciclo di vita dei documenti inseriti.
|
|
35
|
+
from 7-1-08 | University exam of software engeenering in collaboration with Serenissima Informatica (PD)
|
|
36
|
+
to 1-06-08 | This application is cv/resume management written in java(Struts framework,hibernate).
|
|
41
37
|
| https://sourceforge.net/projects/mogeci
|
|
42
38
|
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
|
46
|
-
|
|
|
47
|
-
| 2.0, integrando funzionalita‘ Social. Il por tale sviluppato è correntemente in uso.
|
|
39
|
+
from 1-07-08 | University internship at Intec srl (www.intec.cc) of padua.
|
|
40
|
+
to 01-09-08 | In this internship i developed the company website.
|
|
41
|
+
| Written in ruby on rails 1.2.6 over mysql
|
|
42
|
+
| Front-end and back-end. This application support Internationalization of database contents
|
|
48
43
|
|
|
|
49
|
-
2009-
|
|
50
|
-
|
|
|
44
|
+
2009-2011 | I work as freelancer in Padua with another guy.
|
|
45
|
+
| We delevelop and sell web application based on ruby on rails.
|
|
46
|
+
| I'm specialized on front-end and web user-interface development
|
|
51
47
|
|
|
52
|
-
#{bold}
|
|
53
|
-
|
|
54
|
-
|
|
|
48
|
+
#{bold}Personal skills: #{reset}
|
|
49
|
+
languages | Italian native speaker
|
|
50
|
+
| English (very basic speaker, good understanding)
|
|
55
51
|
|
|
|
56
|
-
|
|
57
|
-
| Ruby
|
|
58
|
-
| Javascript molto buono (
|
|
59
|
-
| Java
|
|
60
|
-
| Python base
|
|
61
|
-
|
|
|
62
|
-
|
|
|
52
|
+
programming | C/C++ (good)
|
|
53
|
+
| Ruby (very good)
|
|
54
|
+
| Javascript molto buono (very good)
|
|
55
|
+
| Java (base/obsolete exp)
|
|
56
|
+
| Python (base)
|
|
57
|
+
| PHP (base/obsolete exp)
|
|
58
|
+
| html/html5 (very good) (i use haml)
|
|
59
|
+
| css (very good) (compass & css framworks)
|
|
63
60
|
|
|
|
64
|
-
|
|
61
|
+
database | Mysql (very good)
|
|
62
|
+
| Mongodb (base)
|
|
63
|
+
| oracle (poor)
|
|
65
64
|
|
|
|
66
|
-
|
|
67
|
-
|
|
|
68
|
-
| WxWidgets
|
|
65
|
+
Server admin | *nix (very good)
|
|
66
|
+
| Apache - nginx (very good)
|
|
69
67
|
|
|
|
70
|
-
|
|
71
|
-
|
|
|
72
|
-
|
|
|
68
|
+
other | git (very good)
|
|
69
|
+
| photoshop (good)
|
|
70
|
+
| illustrator (poor)
|
|
71
|
+
| rails (very good)
|
|
72
|
+
| cucumber integration test (good)
|
|
73
73
|
|
|
|
74
|
-
|
|
74
|
+
driver license | B (Automobile)
|
|
75
75
|
|
|
76
|
-
#{bold}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
|
76
|
+
#{bold}Extras:#{reset}
|
|
77
|
+
|
|
78
|
+
Special skills | I'm independent
|
|
79
|
+
| Good experience in team work.
|
|
80
|
+
| When i start a project i finish it.
|
|
81
|
+
| I don't have fixed working hours. When the work goes hard, i can work saturday and sunday.
|
|
82
|
+
| I'm open to new technlogies.
|
|
83
|
+
| I read and study every day from more than 100 blogs.
|
|
84
|
+
| When i have a technical problem, i search on google before ask at other people.
|
|
85
|
+
| Very good speaker with clients and seller man (in italian language).
|
|
80
86
|
|
|
|
81
|
-
|
|
82
|
-
|
|
|
83
|
-
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
87
|
+
curiosity | I'm using debian gnu/linux since 1999.
|
|
88
|
+
| I'm obsessed about web app performance (server/side - client/side) also when is not necessary.
|
|
89
|
+
| I was a volunteer of green cross of Padua (like red cross).
|
|
90
|
+
|
|
91
|
+
#{bold}Contacts:#{reset}
|
|
92
|
+
|
|
93
|
+
twitter | http://twitter.com/#!/davidebarison
|
|
94
|
+
web | http://barison.org
|
|
95
|
+
skype | dbarison
|
|
92
96
|
|
|
93
|
-
|
|
94
97
|
EOF
|
|
95
98
|
|
|
96
|
-
puts curriculum
|
|
99
|
+
puts curriculum
|
data/dbarison_curriculum.gemspec
CHANGED
|
@@ -1,60 +1,21 @@
|
|
|
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 "dbarison_curriculum/version"
|
|
5
4
|
|
|
6
5
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name
|
|
8
|
-
s.version
|
|
6
|
+
s.name = "dbarison_curriculum"
|
|
7
|
+
s.version = DbarisonCurriculum::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["Davide Barison"]
|
|
10
|
+
s.email = ["davide@megiston.it"]
|
|
11
|
+
s.homepage = ""
|
|
12
|
+
s.summary = %q{Get Davide Barison CV/resume by typing 'dbarison' from your terminal}
|
|
13
|
+
s.description = %q{Curriculm Vitae of Davide Barison}
|
|
9
14
|
|
|
10
|
-
s.
|
|
11
|
-
s.authors = ["Davide Barison"]
|
|
12
|
-
s.date = %q{2010-03-04}
|
|
13
|
-
s.default_executable = %q{dbarison}
|
|
14
|
-
s.description = %q{Get Davide Barison's Curriculm Vitae typing 'dbarison' from your terminal}
|
|
15
|
-
s.email = %q{davide@megiston.it}
|
|
16
|
-
s.executables = ["dbarison"]
|
|
17
|
-
s.extra_rdoc_files = [
|
|
18
|
-
"LICENSE",
|
|
19
|
-
"README.rdoc"
|
|
20
|
-
]
|
|
21
|
-
s.files = [
|
|
22
|
-
".document",
|
|
23
|
-
".gitignore",
|
|
24
|
-
"LICENSE",
|
|
25
|
-
"README.rdoc",
|
|
26
|
-
"Rakefile",
|
|
27
|
-
"VERSION",
|
|
28
|
-
"bin/dbarison",
|
|
29
|
-
"dbarison_curriculum.gemspec",
|
|
30
|
-
"lib/dbarison_curriculum.rb",
|
|
31
|
-
"test/helper.rb",
|
|
32
|
-
"test/test_dbarison_curriculum.rb"
|
|
33
|
-
]
|
|
34
|
-
s.homepage = %q{http://github.com/dbarison/epilotto_curriculum}
|
|
35
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
36
|
-
s.require_paths = ["lib"]
|
|
37
|
-
s.rubygems_version = %q{1.3.5}
|
|
38
|
-
s.summary = %q{Davide Barison's Curriculm Vitae}
|
|
39
|
-
s.test_files = [
|
|
40
|
-
"test/helper.rb",
|
|
41
|
-
"test/test_dbarison_curriculum.rb"
|
|
42
|
-
]
|
|
43
|
-
|
|
44
|
-
if s.respond_to? :specification_version then
|
|
45
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
46
|
-
s.specification_version = 3
|
|
15
|
+
s.rubyforge_project = "dbarison_curriculum"
|
|
47
16
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
53
|
-
s.add_dependency(%q<term-ansicolor>, [">= 0"])
|
|
54
|
-
end
|
|
55
|
-
else
|
|
56
|
-
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
57
|
-
s.add_dependency(%q<term-ansicolor>, [">= 0"])
|
|
58
|
-
end
|
|
17
|
+
s.files = `git ls-files`.split("\n")
|
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
|
+
s.require_paths = ["lib"]
|
|
59
21
|
end
|
|
60
|
-
|
data/lib/dbarison_curriculum.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dbarison_curriculum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 23
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.0.4
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Davide Barison
|
|
@@ -9,41 +15,30 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date:
|
|
13
|
-
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: "0"
|
|
24
|
-
version:
|
|
25
|
-
- !ruby/object:Gem::Dependency
|
|
26
|
-
name: term-ansicolor
|
|
27
|
-
type: :runtime
|
|
28
|
-
version_requirement:
|
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: "0"
|
|
34
|
-
version:
|
|
35
|
-
description: Get Davide Barison's Curriculm Vitae typing 'dbarison' from your terminal
|
|
36
|
-
email: davide@megiston.it
|
|
18
|
+
date: 2011-03-31 00:00:00 +02:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies: []
|
|
21
|
+
|
|
22
|
+
description: Curriculm Vitae of Davide Barison
|
|
23
|
+
email:
|
|
24
|
+
- davide@megiston.it
|
|
37
25
|
executables:
|
|
38
26
|
- dbarison
|
|
39
27
|
extensions: []
|
|
40
28
|
|
|
41
|
-
extra_rdoc_files:
|
|
42
|
-
|
|
43
|
-
- README.rdoc
|
|
29
|
+
extra_rdoc_files: []
|
|
30
|
+
|
|
44
31
|
files:
|
|
45
32
|
- .document
|
|
46
33
|
- .gitignore
|
|
34
|
+
- .idea/.rakeTasks
|
|
35
|
+
- .idea/dbarison_curriculum.iml
|
|
36
|
+
- .idea/encodings.xml
|
|
37
|
+
- .idea/misc.xml
|
|
38
|
+
- .idea/modules.xml
|
|
39
|
+
- .idea/vcs.xml
|
|
40
|
+
- .idea/workspace.xml
|
|
41
|
+
- Gemfile
|
|
47
42
|
- LICENSE
|
|
48
43
|
- README.rdoc
|
|
49
44
|
- Rakefile
|
|
@@ -51,36 +46,43 @@ files:
|
|
|
51
46
|
- bin/dbarison
|
|
52
47
|
- dbarison_curriculum.gemspec
|
|
53
48
|
- lib/dbarison_curriculum.rb
|
|
49
|
+
- lib/dbarison_curriculum/version.rb
|
|
54
50
|
- test/helper.rb
|
|
55
51
|
- test/test_dbarison_curriculum.rb
|
|
56
52
|
has_rdoc: true
|
|
57
|
-
homepage:
|
|
53
|
+
homepage: ""
|
|
58
54
|
licenses: []
|
|
59
55
|
|
|
60
56
|
post_install_message:
|
|
61
|
-
rdoc_options:
|
|
62
|
-
|
|
57
|
+
rdoc_options: []
|
|
58
|
+
|
|
63
59
|
require_paths:
|
|
64
60
|
- lib
|
|
65
61
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
|
+
none: false
|
|
66
63
|
requirements:
|
|
67
64
|
- - ">="
|
|
68
65
|
- !ruby/object:Gem::Version
|
|
66
|
+
hash: 3
|
|
67
|
+
segments:
|
|
68
|
+
- 0
|
|
69
69
|
version: "0"
|
|
70
|
-
version:
|
|
71
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
|
+
none: false
|
|
72
72
|
requirements:
|
|
73
73
|
- - ">="
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
+
hash: 3
|
|
76
|
+
segments:
|
|
77
|
+
- 0
|
|
75
78
|
version: "0"
|
|
76
|
-
version:
|
|
77
79
|
requirements: []
|
|
78
80
|
|
|
79
|
-
rubyforge_project:
|
|
80
|
-
rubygems_version: 1.3.
|
|
81
|
+
rubyforge_project: dbarison_curriculum
|
|
82
|
+
rubygems_version: 1.3.7
|
|
81
83
|
signing_key:
|
|
82
84
|
specification_version: 3
|
|
83
|
-
summary: Davide Barison'
|
|
85
|
+
summary: Get Davide Barison CV/resume by typing 'dbarison' from your terminal
|
|
84
86
|
test_files:
|
|
85
87
|
- test/helper.rb
|
|
86
88
|
- test/test_dbarison_curriculum.rb
|