Employee can work on the several projects in the same company, it's reasonable allow to specify projects per company in CV. For this feature we need to introduce groups in the form of the tree, where one node can contain many other nodes. In this case we can write something like this:
employment do
company "Dream" do
homepage "http://dream.com/"
project "A" do
homepage "http://project-a.com/"
title "Rails developer"
technologies "Ruby, Ruby on Rails"
bulletin "B1."
bulletin "B2."
start_date "June 2015"
end_date "Current"
end
project "B" do
homepage "http://project-b.com/"
title "JavaScript developer"
technologies "Javascript, Ruby on Rails"
bulletin "B3."
bulletin "B4."
start_date "June 2014"
end_date "June 2015"
end
end
end
end
Employee can work on the several projects in the same company, it's reasonable allow to specify projects per company in CV. For this feature we need to introduce groups in the form of the tree, where one node can contain many other nodes. In this case we can write something like this: