Created
December 6, 2012 23:47
-
-
Save rantav/4229484 to your computer and use it in GitHub Desktop.
Call for Papers, Reversim Summit 2013
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'speaker' | |
require 'israel' | |
module Israel | |
module Summit | |
def call_for_papers(speaker, subject) | |
apply(spekaer) if ["DevOps, NoOps, Continuous Deployment, Dev Culture", | |
"Software Craftsmanship", | |
"Mobile dev", | |
"Web dev", | |
"Product, Lean Startup, UX" | |
].include(subject) | |
and (speaker.available?(Date.new(2013, 2, 18)) or speaker.available?(Date.new(2013, 2, 19))) | |
end | |
def apply(speaker) | |
# We prefer github, but also settle for goo-ol emails | |
if speaker.can_github? | |
speaker.make_pull_request('/rantav/reversim-summit-2013') | |
else | |
spekaer.send_mail('rantav@ the gmail') | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment