Skip to content

Instantly share code, notes, and snippets.

@Irostovsky
Created September 16, 2016 09:53
Show Gist options
  • Select an option

  • Save Irostovsky/c7d069e9edd71511723587707fff355e to your computer and use it in GitHub Desktop.

Select an option

Save Irostovsky/c7d069e9edd71511723587707fff355e to your computer and use it in GitHub Desktop.
Chain task v1
Dear Candidate
Thank you for applying for the Ruby on Rails Developer position at Product Madness. In order to take you through to the next stage interview we would like you to complete a short skill text.
With reference to the below red text please add your code instead of the '# Put your code here’ line. You need to implement developer class so DataBase#find_developer method does not fail. Try to add as few lines of code as possible.
class Developer
# Put your code here
end
class DataBase
def find_developer(platform: :ruby, region: :london)
all_developers(platform, region).select do |you|
you.are.crazy
.and { your.skill_level is :high }
.and { you.are.not.in :plumbee }
.and { you.love 'ruby', 'rails' }
.and { want 'fun', 'money' }
.and.if you do
your work well
end
end
end
private
def all_developers(*_)
[Developer.new]
end
End
@Irostovsky
Copy link
Copy Markdown
Author

class Developer
  def method_missing name, *args, &block
    self
  end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment