up vote 12 down vote favorite
20
share [g+] share [fb]

What should know the Entry Level, Mid-level, Senior Developer? Theoretical knowledge, development tools, gems and more. What issues usually are at the interview?

link|improve this question
1  
Add subjective tag and make community wiki – macek Apr 2 '10 at 22:57
Are you only interested in criteria for rails developers, or are you also interested in developers using plain old ruby objects? – Andrew Grimm Apr 5 '10 at 23:39
I am interested in everything connected with Ruby. – Dev_89 Apr 6 '10 at 7:53
feedback

3 Answers

up vote 25 down vote accepted

Senior

  • Analyse and profile an application for performance and memory issues
  • Analyses and profile an application for security issues
  • Understand database modeling and query analysis
  • Tune a production deployment (Passenger, Thin, Apache etc)
  • Understand and use Ruby metaprogramming
  • Mentoring skills
  • Communication skills
  • Planning and Estimation

Mid-level

  • Setup and deploy a Rails App for production
  • Understand the Rails stack - callbacks, filters, plugins, engines, gems, rack
  • Understand and use Active Record associations
  • Understand and use scopes to define model abstractions
  • Define tests using Cucumber and rSpec
  • Understand and use Object Orientation
  • Understand and use Design Patterns (explain what they are, know some basic patterns)

Entry Level

  • Create and setup a Rails environment
  • Use generators to create models, controllers and migrations
  • Create and use a migration to manage the database
  • Create a unit test using rspec/etc
  • Create a model and basic validations
  • Handle a GET request using a Controller, Model, and View
  • Handle a POST request using a Controller, Model, and View
  • Basic HTML, CSS and JavaScript
  • Basic GIT - clone, commit, push
link|improve this answer
This is a very good list, I would add model validation to the Entry Level or Mid-Level sections. I've found that writing validations first when creating a resource helps you think critically about your application and its data early in the development process. – Patrick Klingemann Apr 3 '10 at 2:24
Good call, added validations. – Toby Hede Apr 3 '10 at 9:56
Thats a pretty damn good list for anyone regardless of language. Understand your application stack. Understand the build system. Understand your test tools. Understand profiling tools. Etc. However I would recommend scrapping CSS and going straight for SASS. The power of sass is so great that while its still CSS, its like assembly vs c really. – Dmitriy Likhten May 12 '11 at 4:28
feedback

How to setup and deploy Rails apps to production environment

link|improve this answer
feedback

Understand ruby blocks and iterators for traversing and manipulating datasets.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.