Fork me on GitHub
def index
@rubaka = 'Web-development shop'
end

def team
@employes = @owners = [
'Andriy Tyurnikov', #TODO C'mon guys, add your profiles with photos!
'Alexander Lonsky',
'Valentin Nastenko'
# Expect more good designers && developers soon!
]
end

def technologies
@tools = {
:UI         => %w[ XHTML CSS JavaScript ],
:frameforks => %w[ Rails ], # Want Django? Look there, heretic ;)
:deployment => %w[ Capistrano Passenger ],
:hosting    => %w[ Slicehost RightScale ], # Yes, we are looking at Heroku
:profiling  => %w[ FiveRuns ]
}
end

def services
@we_do = [ :design, :development, :support, :review ]
end

def partnership
if @you.project_manager? && @you.have_clients?
welcome! # We would like to focus on projects, not on sales, help us
end
end

def contacts
@email.send # Andriy.Tyurnikov@gmail.com
end