clemens (owner)

Forks

Revisions

gist: 176935 Download_button fork
public
Public Clone URL: git://gist.github.com/176935.git
Embed All Files: show embed
job_offer.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Ruby on Rails Developer, Berlin/Potsdam
describe "Job: Ruby on Rails Developer(m/f)" do
  before do
    we = Company.new(
      :name => 'adva Business Software GmbH',
      :website => 'http://adva-business.com',
      :email => 'info@adva-business.com'
    )
    you = Developer.new
    job = Job.new(we, you, :title => "Ruby on Rails Developer", :location => "Berlin/Potsdam")
  end
 
  describe "The job" do
    you.will join("our team of awesome Rails developers")
    you.will work_on("adva-cms, our Open Source CMS Platform, and other Open Source work")
    you.will work_on("client projects built on top of adva-cms")
  end
 
  describe "Your skills" do
    you.should have_experience_with(:development, :on => :rails)
    you.should be(:passionate, :about => ["code", "teamwork", "complex challenges"])
  end
 
  describe "Nice-to-haves" do
    you.ideally have_experience_with(:object_oriented_patterns)
    you.ideally have_experience_with(:database_systems)
  end
 
  describe "What we have to offer" do
    we.are team(:small, :experienced, :motivated, :cool, :contributors => ["Rails core", "I18n"])
    we.work using(:agile, :with => ["tdd/bdd", "pairprogramming", "scrum"])
  end
end
 
if reader.interested? && reader.qualified?
  reader.should send_email(:to => "info@adva-business.com").with(:cv, :list_of_project_work)
end