Skip to content

Instantly share code, notes, and snippets.

@rantav
Created December 6, 2012 23:47
Show Gist options
  • Save rantav/4229484 to your computer and use it in GitHub Desktop.
Save rantav/4229484 to your computer and use it in GitHub Desktop.
Call for Papers, Reversim Summit 2013
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